Lines Matching refs:count
14 void *memmove(void *d, const void *s, size_t count) in memmove() argument
18 if (!count) in memmove()
25 if ((count < 8) || ((dst ^ src) & 3)) in memmove()
30 count--; in memmove()
36 count -= 2; in memmove()
38 while (count > 3) { in memmove()
42 count -= 4; in memmove()
45 while (count--) in memmove()
48 dst = (unsigned long) d + count; in memmove()
49 src = (unsigned long) s + count; in memmove()
51 if ((count < 8) || ((dst ^ src) & 3)) in memmove()
57 count--; in memmove()
63 count -= 2; in memmove()
66 while (count > 3) { in memmove()
69 count -= 4; in memmove()
73 while (count--) { in memmove()