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

/bionic/libc/arch-mips/string/
H A Dmips_strlen.c52 strlen (const char *_a) argument
58 if ((cvt_ptr_to (unsigned, _a) & (sizeof (unsigned) - 1)) != 0)
60 if ((cvt_ptr_to (unsigned, _a) & 1) != 0)
62 if (get_byte (_a, 0) == 0)
65 inc_ptr_as (char *, _a, 1);
68 if ((cvt_ptr_to (unsigned, _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...]

Completed in 64 milliseconds