Searched defs:test_input_block (Results 1 - 2 of 2) sorted by relevance

/external/libvpx/libvpx/test/
H A Dvp8_fdct4x4_test.cc88 int16_t test_input_block[16]; local
99 test_input_block[j] = rnd_.Rand8() - rnd_.Rand8();
102 fdct_func_(test_input_block, test_output_block, pitch);
128 test_input_block[j] = (rnd_.Rand8() >> 4) - (rnd_.Rand8() >> 4);
131 fdct_func_(test_input_block, test_output_block, pitch);
158 int16_t test_input_block[16]; local
164 test_input_block[j] = rnd_.Rand8() - rnd_.Rand8();
168 fdct_func_(test_input_block, test_temp_block, pitch);
172 const int diff = test_input_block[j] - test_output_block[j];
H A Ddct_test.cc136 Buffer<int16_t> test_input_block = local
138 ASSERT_TRUE(test_input_block.Init());
162 test_input_block.TopLeftPixel()[h * test_input_block.stride() + w] =
173 test_input_block.TopLeftPixel()[h * test_input_block.stride() + w] =
181 ASM_REGISTER_STATE_CHECK(RunFwdTxfm(test_input_block, &test_temp_block));

Completed in 145 milliseconds