Lines Matching defs:dst
29 static void add_int16_c(uint16_t *dst, const uint16_t *src, unsigned mask, int w){
35 long b = *(long*)(dst+i);
36 *(long*)(dst+i) = ((a&pw_lsb) + (b&pw_lsb)) ^ ((a^b)&pw_msb);
39 dst[i] = (dst[i] + src[i]) & mask;
42 static void add_hfyu_median_pred_int16_c(uint16_t *dst, const uint16_t *src, const uint16_t *diff, unsigned mask, int w, int *left, int *left_top){
52 dst[i] = l;
59 static void add_hfyu_left_pred_bgr32_c(uint8_t *dst, const uint8_t *src,
71 dst[4 * i + B] = b;
72 dst[4 * i + G] = g;
73 dst[4 * i + R] = r;
74 dst[4 * i + A] = a;