Lines Matching refs:count
13 void *memmove(void *d, const void *s, size_t count) in memmove() argument
17 if (!count) in memmove()
24 if ((count < 8) || ((dst ^ src) & 3)) in memmove()
29 count--; in memmove()
35 count -= 2; in memmove()
37 while (count > 3) { in memmove()
41 count -= 4; in memmove()
44 while (count--) in memmove()
47 dst = (unsigned long) d + count; in memmove()
48 src = (unsigned long) s + count; in memmove()
50 if ((count < 8) || ((dst ^ src) & 3)) in memmove()
56 count--; in memmove()
62 count -= 2; in memmove()
65 while (count > 3) { in memmove()
68 count -= 4; in memmove()
72 while (count--) { in memmove()