Lines Matching refs:count
43 void *memmove(void *__dest, __const void *__src, size_t count) in memmove() argument
52 return memcpy(__dest, __src, count); in memmove()
54 while (count--) in memmove()
55 d[count] = s[count]; in memmove()
68 int memcmp(const void *cs, const void *ct, size_t count) in memcmp() argument
70 const unsigned char *su1 = cs, *su2 = ct, *end = su1 + count; in memcmp()
96 void *memchr(const void *s, int c, size_t count) in memchr() argument
100 while (count--) in memchr()
116 void *memset(void *s, int c, size_t count) in memset() argument
119 while (count--) in memset()
124 void __memzero(void *s, size_t count) in __memzero() argument
126 memset(s, 0, count); in __memzero()