Lines Matching refs:x
40 int16_t __x[60+480], *x = __x + 60; in check_resampler() local
42 x[i] = rand() & 0xffff; in check_resampler()
47 resample_16k_12k8(&hp50, x, y, 128); in check_resampler()
48 neon_resample_16k_12k8(&hp50_neon, x, y_neon, 128); in check_resampler()
52 resample_32k_12k8(&hp50, x, y, 128); in check_resampler()
53 neon_resample_32k_12k8(&hp50_neon, x, y_neon, 128); in check_resampler()
57 resample_48k_12k8(&hp50, x, y, 128); in check_resampler()
58 neon_resample_48k_12k8(&hp50_neon, x, y_neon, 128); in check_resampler()
67 int16_t x[200]; in check_dot() local
69 x[i] = rand() & 0xffff; in check_dot()
71 float y = dot(x, x+3, 128); in check_dot()
72 float y_neon = neon_dot(x, x+3, 128); in check_dot()