Lines Matching refs:dst1
48 uint8_t *dst1 = av_mallocz(width);
55 if (!dst0 || !dst1)
61 call_new(dst1, src1, width);
62 if (memcmp(dst0, dst1, width))
64 bench_new(dst1, src1, width);
70 av_free(dst1);
76 uint8_t *dst1 = av_mallocz(width);
96 call_new(dst1, src1, diff1, width, &A1, &B1);
97 if (memcmp(dst0, dst1, width) || (A0 != A1) || (B0 != B1))
99 bench_new(dst1, src1, diff1, width, &A1, &B1);
107 av_free(dst1);
114 uint8_t *dst1 = av_mallocz(width);
121 if (!dst0 || !dst1)
126 res1 = call_new(dst1, src1, width, acc);
128 memcmp(dst0, dst1, width))
130 bench_new(dst1, src1, width, acc);
136 av_free(dst1);
143 uint16_t *dst1 = av_calloc(width, sizeof(*dst1));
150 if (!dst0 || !dst1)
155 res1 = call_new(dst1, src1, mask, width, acc);
157 memcmp(dst0, dst1, width))
159 bench_new(dst1, src1, mask, width, acc);
165 av_free(dst1);