HomeSort by relevance Sort by last modified time
    Searched refs:do_bytes (Results 1 - 7 of 7) sorted by null

  /bionic/libc/arch-mips/string/
strlen.c 40 do_bytes (const char *base, const char *p, op_t inval) function
65 return do_bytes(str, (const char *)(w + cnt), val); \
69 do_bytes (const char *base, const char *p) function
77 return do_bytes(str, (const char *)(w + cnt)); \
strnlen.c 40 do_bytes (const char *base, const char *p, op_t inval) function
65 return do_bytes(str, (const char *)(in), tmp); \
69 do_bytes (const char *base, const char *p) function
77 return do_bytes(str, (const char *)(in)); \
memchr.c 46 do_bytes (const op_t* w, op_t inval) function
72 return do_bytes(in, tmp); \
76 do_bytes (const op_t* w, unsigned char ch) function
86 return do_bytes(in, ch); \
strchr.c 67 return do_bytes(w + cnt, ch); \
72 do_bytes (const op_t* w, unsigned char ch) function
memcmp.c 112 do_bytes (const void *a, const void *b, unsigned long len) function
212 return do_bytes (a, b, bytes);
219 return do_bytes (a, b, (sizeof (reg_t) * words) + bytes);
309 return do_bytes (a, b, bytes);
318 return do_bytes (a, b, len);
330 res = do_bytes (a, b, bytes);
memcpy.c 90 do_bytes (void *a, const void *b, unsigned long len, void *ret) function
296 return do_bytes (a, b, len, a);
307 do_bytes (a, b, bytes, ret);
memmove.c 90 do_bytes (void *a, const void *b, unsigned long len, void *ret) function
398 return do_bytes (dst0, src0, length, ret);
409 do_bytes (dst0, src0, bytes, ret);

Completed in 353 milliseconds