Lines Matching refs:dst

220 static inline void fast_memmove(char *dst, const char *src, size_t size)  in fast_memmove()  argument
224 if (dst < src) in fast_memmove()
232 : "=a" (src), "=a" (dst), "=d" (size) in fast_memmove()
233 : "0" (src), "1" (dst), "2" (size / 16 - 1) in fast_memmove()
243 : "=a" (src), "=a" (dst), "=d" (size) in fast_memmove()
244 : "0" (src + size), "1" (dst + size), "2" (size / 16 - 1) in fast_memmove()
280 static inline void fill8_col(u8 *dst, u32 m[]) in fill8_col() argument
283 dst[0] = tmp; in fill8_col()
284 dst[2] = (tmp >>= 8); in fill8_col()
286 dst[4] = (tmp >>= 8); in fill8_col()
287 dst[6] = tmp >> 8; in fill8_col()
291 dst[8] = tmp; in fill8_col()
292 dst[10] = (tmp >>= 8); in fill8_col()
293 dst[12] = (tmp >>= 8); in fill8_col()
294 dst[14] = tmp >> 8; in fill8_col()
301 static inline void fill8_2col(u8 *dst, u8 fg, u8 bg, u32 mask) in fill8_2col() argument
312 dst[0] = tmp; in fill8_2col()
313 dst[2] = (tmp >>= 8); in fill8_2col()
315 dst[4] = (tmp >>= 8); in fill8_2col()
316 dst[6] = tmp >> 8; in fill8_2col()
320 dst[8] = tmp; in fill8_2col()
321 dst[10] = (tmp >>= 8); in fill8_2col()
322 dst[12] = (tmp >>= 8); in fill8_2col()
323 dst[14] = tmp >> 8; in fill8_2col()
359 static inline u32 *fill16_col(u32 *dst, int rows, u32 m[]) in fill16_col() argument
362 *dst++ = m[0]; in fill16_col()
364 *dst++ = m[1]; in fill16_col()
367 *dst++ = m[2]; in fill16_col()
368 *dst++ = m[3]; in fill16_col()
372 return dst; in fill16_col()
375 static inline void memmove32_col(void *dst, void *src, u32 mask, u32 h, u32 bytes) in memmove32_col() argument
380 d = dst; in memmove32_col()