Lines Matching refs:count
26 void *__memmove(void *__dest, __const void *__src, size_t count) __alias(memmove);
27 void *__memset(void *s, int c, size_t count) __alias(memset);
64 void *memmove(void *__dest, __const void *__src, size_t count) in memmove() argument
73 return memcpy(__dest, __src, count); in memmove()
75 while (count--) in memmove()
76 d[count] = s[count]; in memmove()
89 size_t strnlen(const char *s, size_t count) in strnlen() argument
93 for (sc = s; count-- && *sc != '\0'; ++sc) in strnlen()
98 int memcmp(const void *cs, const void *ct, size_t count) in memcmp() argument
100 const unsigned char *su1 = cs, *su2 = ct, *end = su1 + count; in memcmp()
126 void *memchr(const void *s, int c, size_t count) in memchr() argument
130 while (count--) in memchr()
156 void *memset(void *s, int c, size_t count) in memset() argument
159 while (count--) in memset()