Lines Matching refs:count
30 void *memcpy(void *dest, const void *src, size_t count) in memcpy() argument
36 if (count < MIN_THRESHOLD) in memcpy()
40 for (; d.as_uptr & WORD_MASK; count--) in memcpy()
57 for (; count >= BYTES_LONG; count -= BYTES_LONG) { in memcpy()
75 for (; count >= BYTES_LONG; count -= BYTES_LONG) in memcpy()
80 while (count--) in memcpy()
91 void *memmove(void *dest, const void *src, size_t count) in memmove() argument
93 if (dest < src || src + count <= dest) in memmove()
94 return memcpy(dest, src, count); in memmove()
97 const char *s = src + count; in memmove()
98 char *tmp = dest + count; in memmove()
100 while (count--) in memmove()
107 void *memset(void *s, int c, size_t count) in memset() argument
111 if (count >= MIN_THRESHOLD) { in memset()
120 for (; count && dest.as_uptr & WORD_MASK; count--) in memset()
124 for (; count >= BYTES_LONG; count -= BYTES_LONG) in memset()
129 while (count--) in memset()