Lines Matching defs:ref
42 LOCAL_ALIGNED_32(int, ref, [BUF_SIZE]);
47 call_ref(ref, src0, src1, BUF_SIZE);
49 if (memcmp(ref, new, BUF_SIZE * sizeof(int)))
56 LOCAL_ALIGNED_32(int, ref, [BUF_SIZE]);
61 call_ref(ref, src0, src1, src2, BUF_SIZE);
63 if (memcmp(ref, new, BUF_SIZE * sizeof(int)))
70 LOCAL_ALIGNED_32(int32_t, ref, [BUF_SIZE]);
75 call_ref(ref, src0, src1, win, BUF_SIZE / 2);
77 if (memcmp(ref, new, BUF_SIZE * sizeof(int32_t)))
84 LOCAL_ALIGNED_16(int16_t, ref, [BUF_SIZE]);
89 call_ref(ref, src0, src1, win, BUF_SIZE / 2, 2);
91 if (memcmp(ref, new, BUF_SIZE * sizeof(int16_t)))
122 int ref, new;
126 ref = call_ref(src0, src1, BUF_SIZE);
128 if (ref != new)