Lines Matching refs:out_w

75   const int out_w = GET_PARAM(0), out_h = GET_PARAM(1);  in RunCheckOutput()  local
86 int output_n = ALIGN_POWER_OF_TWO(out_w, 4) * out_h; in RunCheckOutput()
102 int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); in RunCheckOutput()
104 out_w, hkernel, 16, vkernel, 16, out_w, out_h, in RunCheckOutput()
106 test_impl(input + offset_r * w + offset_c, w, output2, out_w, hkernel, 16, in RunCheckOutput()
107 vkernel, 16, out_w, out_h, &conv_params); in RunCheckOutput()
109 for (j = 0; j < out_w * out_h; ++j) in RunCheckOutput()
111 << "Pixel mismatch at index " << j << " = (" << (j % out_w) << ", " in RunCheckOutput()
112 << (j / out_w) << ") on iteration " << i; in RunCheckOutput()
121 const int out_w = GET_PARAM(0), out_h = GET_PARAM(1); in RunSpeedTest() local
132 int output_n = ALIGN_POWER_OF_TWO(out_w, 4) * out_h; in RunSpeedTest()
149 for (k = 3; k < w - out_w - 4; k++) { in RunSpeedTest()
150 av1_wiener_convolve_add_src_c(input + j * w + k, w, output, out_w, in RunSpeedTest()
151 hkernel, 16, vkernel, 16, out_w, out_h, in RunSpeedTest()
163 for (k = 3; k < w - out_w - 4; k++) { in RunSpeedTest()
164 test_impl(input + j * w + k, w, output2, out_w, hkernel, 16, vkernel, in RunSpeedTest()
165 16, out_w, out_h, &conv_params); in RunSpeedTest()
212 const int out_w = GET_PARAM(0), out_h = GET_PARAM(1); in RunCheckOutput() local
223 int output_n = ALIGN_POWER_OF_TWO(out_w, 4) * out_h; in RunCheckOutput()
243 int offset_c = 3 + rnd_.PseudoUniform(w - out_w - 7); in RunCheckOutput()
245 input_ptr + offset_r * w + offset_c, w, output_ptr, out_w, hkernel, 16, in RunCheckOutput()
246 vkernel, 16, out_w, out_h, &conv_params, bd); in RunCheckOutput()
247 test_impl(input_ptr + offset_r * w + offset_c, w, output2_ptr, out_w, in RunCheckOutput()
248 hkernel, 16, vkernel, 16, out_w, out_h, &conv_params, bd); in RunCheckOutput()
250 for (j = 0; j < out_w * out_h; ++j) in RunCheckOutput()
252 << "Pixel mismatch at index " << j << " = (" << (j % out_w) << ", " in RunCheckOutput()
253 << (j / out_w) << ") on iteration " << i; in RunCheckOutput()
263 const int out_w = GET_PARAM(0), out_h = GET_PARAM(1); in RunSpeedTest() local
274 int output_n = ALIGN_POWER_OF_TWO(out_w, 4) * out_h; in RunSpeedTest()
295 for (k = 3; k < w - out_w - 4; k++) { in RunSpeedTest()
297 input_ptr + j * w + k, w, output_ptr, out_w, hkernel, 16, vkernel, in RunSpeedTest()
298 16, out_w, out_h, &conv_params, bd); in RunSpeedTest()
309 for (k = 3; k < w - out_w - 4; k++) { in RunSpeedTest()
310 test_impl(input_ptr + j * w + k, w, output2_ptr, out_w, hkernel, 16, in RunSpeedTest()
311 vkernel, 16, out_w, out_h, &conv_params, bd); in RunSpeedTest()