Lines Matching defs:new
43 LOCAL_ALIGNED_32(int, new, [BUF_SIZE]);
48 call_new(new, src0, src1, BUF_SIZE);
49 if (memcmp(ref, new, BUF_SIZE * sizeof(int)))
51 bench_new(new, src0, src1, BUF_SIZE);
57 LOCAL_ALIGNED_32(int, new, [BUF_SIZE]);
62 call_new(new, src0, src1, src2, BUF_SIZE);
63 if (memcmp(ref, new, BUF_SIZE * sizeof(int)))
65 bench_new(new, src0, src1, src2, BUF_SIZE);
71 LOCAL_ALIGNED_32(int32_t, new, [BUF_SIZE]);
76 call_new(new, src0, src1, win, BUF_SIZE / 2);
77 if (memcmp(ref, new, BUF_SIZE * sizeof(int32_t)))
79 bench_new(new, src0, src1, win, BUF_SIZE / 2);
85 LOCAL_ALIGNED_16(int16_t, new, [BUF_SIZE]);
90 call_new(new, src0, src1, win, BUF_SIZE / 2, 2);
91 if (memcmp(ref, new, BUF_SIZE * sizeof(int16_t)))
93 bench_new(new, src0, src1, win, BUF_SIZE / 2, 2);
122 int ref, new;
127 new = call_new(src0, src1, BUF_SIZE);
128 if (ref != new)