Lines Matching defs:dst0
47 uint8_t *dst0 = av_mallocz(width);
55 if (!dst0 || !dst1)
60 call_ref(dst0, src0, width);
62 if (memcmp(dst0, dst1, width))
69 av_free(dst0);
75 uint8_t *dst0 = av_mallocz(width);
95 call_ref(dst0, src0, diff0, width, &A0, &B0);
97 if (memcmp(dst0, dst1, width) || (A0 != A1) || (B0 != B1))
106 av_free(dst0);
113 uint8_t *dst0 = av_mallocz(width);
121 if (!dst0 || !dst1)
125 res0 = call_ref(dst0, src0, width, acc);
128 memcmp(dst0, dst1, width))
135 av_free(dst0);
142 uint16_t *dst0 = av_calloc(width, sizeof(*dst0));
150 if (!dst0 || !dst1)
154 res0 = call_ref(dst0, src0, mask, width, acc);
157 memcmp(dst0, dst1, width))
164 av_free(dst0);