Lines Matching refs:count
29 static inline void scr_memsetw(u16 *s, u16 c, unsigned int count) in scr_memsetw() argument
32 count /= 2; in scr_memsetw()
33 while (count--) in scr_memsetw()
36 memset16(s, c, count / 2); in scr_memsetw()
42 static inline void scr_memcpyw(u16 *d, const u16 *s, unsigned int count) in scr_memcpyw() argument
45 count /= 2; in scr_memcpyw()
46 while (count--) in scr_memcpyw()
49 memcpy(d, s, count); in scr_memcpyw()
55 static inline void scr_memmovew(u16 *d, const u16 *s, unsigned int count) in scr_memmovew() argument
59 scr_memcpyw(d, s, count); in scr_memmovew()
61 count /= 2; in scr_memmovew()
62 d += count; in scr_memmovew()
63 s += count; in scr_memmovew()
64 while (count--) in scr_memmovew()
68 memmove(d, s, count); in scr_memmovew()