Lines Matching refs:test_temp_block
229 DECLARE_ALIGNED(16, tran_low_t, test_temp_block[64]); in RunRoundTripErrorCheck()
254 RunFwdTxfm(test_input_block, test_temp_block, pitch_)); in RunRoundTripErrorCheck()
256 if (test_temp_block[j] > 0) { in RunRoundTripErrorCheck()
257 test_temp_block[j] += 2; in RunRoundTripErrorCheck()
258 test_temp_block[j] /= 4; in RunRoundTripErrorCheck()
259 test_temp_block[j] *= 4; in RunRoundTripErrorCheck()
261 test_temp_block[j] -= 2; in RunRoundTripErrorCheck()
262 test_temp_block[j] /= 4; in RunRoundTripErrorCheck()
263 test_temp_block[j] *= 4; in RunRoundTripErrorCheck()
267 ASM_REGISTER_STATE_CHECK(RunInvTxfm(test_temp_block, dst, pitch_)); in RunRoundTripErrorCheck()
271 RunInvTxfm(test_temp_block, CAST_TO_BYTEPTR(dst16), pitch_)); in RunRoundTripErrorCheck()
304 DECLARE_ALIGNED(16, tran_low_t, test_temp_block[64]); in RunExtremalCheck()
346 RunFwdTxfm(test_input_block, test_temp_block, pitch_)); in RunExtremalCheck()
350 ASM_REGISTER_STATE_CHECK(RunInvTxfm(test_temp_block, dst, pitch_)); in RunExtremalCheck()
354 RunInvTxfm(test_temp_block, CAST_TO_BYTEPTR(dst16), pitch_)); in RunExtremalCheck()
369 const int coeff_diff = test_temp_block[j] - ref_temp_block[j]; in RunExtremalCheck()