• Home
  • Raw
  • Download

Lines Matching refs:tran_low_t

39 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride);
40 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride);
41 typedef void (*FhtFunc)(const int16_t *in, tran_low_t *out, int stride,
43 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
80 void fdct8x8_ref(const int16_t *in, tran_low_t *out, int stride, in fdct8x8_ref()
85 void fht8x8_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fht8x8_ref()
90 void idct8x8_10(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_10()
94 void idct8x8_12(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_12()
98 void iht8x8_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht8x8_10()
102 void iht8x8_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht8x8_12()
108 void idct8x8_12_add_10_c(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_12_add_10_c()
112 void idct8x8_12_add_12_c(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_12_add_12_c()
116 void idct8x8_12_add_10_sse2(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_12_add_10_sse2()
120 void idct8x8_12_add_12_sse2(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_12_add_12_sse2()
124 void idct8x8_64_add_10_sse2(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_64_add_10_sse2()
128 void idct8x8_64_add_12_sse2(const tran_low_t *in, uint8_t *out, int stride) { in idct8x8_64_add_12_sse2()
139 virtual void RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) = 0;
140 virtual void RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) = 0;
145 DECLARE_ALIGNED(16, tran_low_t, test_output_block[64]); in RunSignBiasCheck()
218 DECLARE_ALIGNED(16, tran_low_t, test_temp_block[64]); in RunRoundTripErrorCheck()
293 DECLARE_ALIGNED(16, tran_low_t, test_temp_block[64]); in RunExtremalCheck()
294 DECLARE_ALIGNED(16, tran_low_t, ref_temp_block[64]); in RunExtremalCheck()
380 DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]); in RunInvAccuracyCheck()
408 coeff[j] = static_cast<tran_low_t>(round(out_r[j])); in RunInvAccuracyCheck()
438 DECLARE_ALIGNED(16, tran_low_t, coeff_r[kNumCoeffs]); in RunFwdAccuracyCheck()
439 DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]); in RunFwdAccuracyCheck()
452 coeff_r[j] = static_cast<tran_low_t>(round(out_r[j])); in RunFwdAccuracyCheck()
468 DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]); in CompareInvReference()
544 void RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) { in RunFwdTxfm()
547 void RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) { in RunInvTxfm()
583 void RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) { in RunFwdTxfm()
586 void RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) { in RunInvTxfm()
617 void RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) { in RunInvTxfm()
620 void RunFwdTxfm(int16_t * /*out*/, tran_low_t * /*dst*/, int /*stride*/) {} in RunFwdTxfm() argument