Lines Matching defs:dst
34 #define randomize_buffers(src, dst, stride, coef) \
39 AV_WN32A((dst) + y * (stride), rnd()); \
42 (dst)[y * (stride) + x]; \
115 LOCAL_ALIGNED_16(uint8_t, dst, [4 * 4]);
123 declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, int16_t *block, ptrdiff_t stride);
126 randomize_buffers(src, dst, 4, coef);
140 memcpy(dst0, dst, 4 * 4);
141 memcpy(dst1, dst, 4 * 4);
160 LOCAL_ALIGNED_16(uint8_t, dst, [4 * 4 * 4]);
168 declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, int16_t block[4][16], ptrdiff_t stride);
180 randomize_buffers(src + stride * blocky + blockx, dst + stride * blocky + blockx, stride, coef[i]);
185 memcpy(dst0, dst, 4 * 4 * 4);
186 memcpy(dst1, dst, 4 * 4 * 4);
217 uint8_t src[16], dst[16];
218 randomize_buffers(src, dst, 4, block[blocky][blockx]);