Home | History | Annotate | Download | only in linux

Lines Matching full:count

31 static inline void scr_memsetw(u16 *s, u16 c, unsigned int count)
33 count /= 2;
34 while (count--)
40 static inline void scr_memcpyw(u16 *d, const u16 *s, unsigned int count)
42 count /= 2;
43 while (count--)
49 static inline void scr_memmovew(u16 *d, const u16 *s, unsigned int count)
52 scr_memcpyw(d, s, count);
54 count /= 2;
55 d += count;
56 s += count;
57 while (count--)