Lines Matching refs:count
27 static inline void scr_memsetw(u16 *s, u16 c, unsigned int count) in scr_memsetw() argument
29 count /= 2; in scr_memsetw()
30 while (count--) in scr_memsetw()
36 static inline void scr_memcpyw(u16 *d, const u16 *s, unsigned int count) in scr_memcpyw() argument
38 count /= 2; in scr_memcpyw()
39 while (count--) in scr_memcpyw()
45 static inline void scr_memmovew(u16 *d, const u16 *s, unsigned int count) in scr_memmovew() argument
48 scr_memcpyw(d, s, count); in scr_memmovew()
50 count /= 2; in scr_memmovew()
51 d += count; in scr_memmovew()
52 s += count; in scr_memmovew()
53 while (count--) in scr_memmovew()