Home | History | Annotate | Download | only in test

Lines Matching refs:output_ref_block

384     DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kNumCoeffs]);
393 fwd_txfm_ref(input_block, output_ref_block, pitch_, tx_type_);
398 EXPECT_EQ(output_block[j], output_ref_block[j]);
406 DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kNumCoeffs]);
420 fwd_txfm_ref(input_extreme_block, output_ref_block, pitch_, tx_type_);
426 EXPECT_EQ(output_block[j], output_ref_block[j]);
437 DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kNumCoeffs]);
458 fwd_txfm_ref(input_extreme_block, output_ref_block, pitch_, tx_type_);
469 output_ref_block[0] = (output_ref_block[0] / dc_thred) * dc_thred;
471 output_ref_block[j] = (output_ref_block[j] / ac_thred) * ac_thred;
474 inv_txfm_ref(output_ref_block, ref, pitch_, tx_type_);
475 ASM_REGISTER_STATE_CHECK(RunInvTxfm(output_ref_block, dst, pitch_));
478 inv_txfm_ref(output_ref_block, CAST_TO_BYTEPTR(ref16), pitch_,
481 RunInvTxfm(output_ref_block, CAST_TO_BYTEPTR(dst16), pitch_));