Lines Matching defs:WIDTH
42 #define WIDTH 64
51 LOCAL_ALIGNED_16(uint8_t, img1, [WIDTH * HEIGHT]);
52 LOCAL_ALIGNED_16(uint8_t, img2, [WIDTH * HEIGHT]);
64 fill_random(img1, WIDTH * HEIGHT);
65 fill_random(img2, WIDTH * HEIGHT);
69 x = rnd() % (WIDTH - look_ahead);
72 ptr = img2 + y * WIDTH + x;
73 d2 = call_ref(NULL, img1, ptr, WIDTH, 8);
74 d1 = call_new(NULL, img1, ptr, WIDTH, 8);
83 bench_new(NULL, img1, ptr, WIDTH, 8);