Lines Matching refs:dst

219 static inline void fast_memmove(char *dst, const char *src, size_t size)  in fast_memmove()  argument
223 if (dst < src) in fast_memmove()
231 : "=a" (src), "=a" (dst), "=d" (size) in fast_memmove()
232 : "0" (src), "1" (dst), "2" (size / 16 - 1) in fast_memmove()
242 : "=a" (src), "=a" (dst), "=d" (size) in fast_memmove()
243 : "0" (src + size), "1" (dst + size), "2" (size / 16 - 1) in fast_memmove()
279 static inline void fill8_col(u8 *dst, u32 m[]) in fill8_col() argument
282 dst[0] = tmp; in fill8_col()
283 dst[2] = (tmp >>= 8); in fill8_col()
285 dst[4] = (tmp >>= 8); in fill8_col()
286 dst[6] = tmp >> 8; in fill8_col()
290 dst[8] = tmp; in fill8_col()
291 dst[10] = (tmp >>= 8); in fill8_col()
292 dst[12] = (tmp >>= 8); in fill8_col()
293 dst[14] = tmp >> 8; in fill8_col()
300 static inline void fill8_2col(u8 *dst, u8 fg, u8 bg, u32 mask) in fill8_2col() argument
311 dst[0] = tmp; in fill8_2col()
312 dst[2] = (tmp >>= 8); in fill8_2col()
314 dst[4] = (tmp >>= 8); in fill8_2col()
315 dst[6] = tmp >> 8; in fill8_2col()
319 dst[8] = tmp; in fill8_2col()
320 dst[10] = (tmp >>= 8); in fill8_2col()
321 dst[12] = (tmp >>= 8); in fill8_2col()
322 dst[14] = tmp >> 8; in fill8_2col()
358 static inline u32 *fill16_col(u32 *dst, int rows, u32 m[]) in fill16_col() argument
361 *dst++ = m[0]; in fill16_col()
363 *dst++ = m[1]; in fill16_col()
366 *dst++ = m[2]; in fill16_col()
367 *dst++ = m[3]; in fill16_col()
371 return dst; in fill16_col()
374 static inline void memmove32_col(void *dst, void *src, u32 mask, u32 h, u32 bytes) in memmove32_col() argument
379 d = dst; in memmove32_col()