Searched refs:_a (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/arch-mips/string/
H A Dmips_strlen.c51 strlen (const void *_a) argument
57 if ((cvt_ptr_to (unsigned, _a) & (sizeof (unsigned) - 1)) != 0)
59 if ((cvt_ptr_to (unsigned, _a) & 1) != 0)
61 if (get_byte (_a, 0) == 0)
64 inc_ptr_as (char *, _a, 1);
67 if ((cvt_ptr_to (unsigned, _a) & 2) != 0)
69 if (get_byte (_a, 0) == 0)
71 if (get_byte (_a, 1) == 0)
73 inc_ptr_as (char *, _a, 2);
92 x = get_word (_a,
[all...]
/bionic/libc/arch-mips64/string/
H A Dmips_strlen.c52 strlen (const char *_a) argument
58 if ((cvt_ptr_to (unsigned long, _a) & (sizeof (unsigned long) - 1)) != 0)
60 if ((cvt_ptr_to (unsigned long, _a) & 1) != 0)
62 if (get_byte (_a, 0) == 0)
65 inc_ptr_as (char *, _a, 1);
68 if ((cvt_ptr_to (unsigned long, _a) & 2) != 0)
70 if (get_byte (_a, 0) == 0)
72 if (get_byte (_a, 1) == 0)
74 inc_ptr_as (char *, _a, 2);
93 x = get_word (_a,
[all...]
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dmktemp.c39 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))

Completed in 244 milliseconds