Lines Matching defs:in
5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
215 /* Set up guard blocks for an inner block centered in the outer block */
263 uint8_t* const in = input();
268 UUT_->h8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
275 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
280 uint8_t* const in = input();
285 UUT_->v8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
292 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
297 uint8_t* const in = input();
302 UUT_->hv8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
309 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
340 uint8_t* const in = input();
353 filter_block2d_8_c(in, kInputStride,
360 UUT_->hv8_(in, kInputStride, out, kOutputStride,
365 UUT_->v8_(in, kInputStride, out, kOutputStride,
370 UUT_->h8_(in, kInputStride, out, kOutputStride,
388 uint8_t* const in = input();
411 filter_average_block2d_8_c(in, kInputStride,
418 UUT_->hv8_avg_(in, kInputStride, out, kOutputStride,
423 UUT_->v8_avg_(in, kInputStride, out, kOutputStride,
428 UUT_->h8_avg_(in, kInputStride, out, kOutputStride,
466 uint8_t* const in = input();
475 * which is non-zero only in the last tap. So, applying the filter at the
476 * current input position will result in an output equal to the pixel at
481 /* Assume that each output pixel requires us to step on by 17/16th pixels in
486 /* The filters are setup in such a way that the expected output produces
489 * position to the left, resulting in the same input pixel being replicated
490 * in to the output for 8 consecutive samples. After each set of 8 positions
498 UUT_->h8_(in, kInputStride, out, kOutputStride,
508 ASSERT_EQ(in[ref_x], out[x]) << "x == " << x << "width = " << Width();
513 UUT_->v8_(in, kInputStride, out, kOutputStride,
523 ASSERT_EQ(in[ref_y * kInputStride], out[y * kInputStride]) << "y == " << y;
526 /* Test the horizontal and vertical filters in combination. */
528 UUT_->hv8_(in, kInputStride, out, kOutputStride,
546 ASSERT_EQ(in[ref_y * kInputStride + ref_x], out[y * kOutputStride + x])
555 uint8_t* const in = input();
563 /* Test the horizontal and vertical filters in combination. */
564 ASM_REGISTER_STATE_CHECK(UUT_->hv8_(in, kInputStride, out, kOutputStride,
573 ASSERT_EQ(in[y * kInputStride + x], out[y * kOutputStride + x])
650 // reenabled in vp9_rtcd_defs.pl.