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