HomeSort by relevance Sort by last modified time
    Searched refs:DCT_CONST_BITS (Results 26 - 30 of 30) sorted by null

12

  /external/libvpx/libvpx/vpx_dsp/arm/
idct32x32_add_neon.c 142 *qOut0 = vcombine_s16(vrshrn_n_s32(q[0], DCT_CONST_BITS),
143 vrshrn_n_s32(q[1], DCT_CONST_BITS));
144 *qOut1 = vcombine_s16(vrshrn_n_s32(q[2], DCT_CONST_BITS),
145 vrshrn_n_s32(q[3], DCT_CONST_BITS));
idct16x16_add_neon.c 20 *d0 = vrshrn_n_s32(t32[0], DCT_CONST_BITS);
21 *d1 = vrshrn_n_s32(t32[1], DCT_CONST_BITS);
  /external/libvpx/libvpx/vpx_dsp/mips/
idct16x16_msa.c 269 out = ROUND_POWER_OF_TWO((input[0] * cospi_16_64), DCT_CONST_BITS);
270 out = ROUND_POWER_OF_TWO((out * cospi_16_64), DCT_CONST_BITS);
idct32x32_msa.c 703 out = ROUND_POWER_OF_TWO((input[0] * cospi_16_64), DCT_CONST_BITS);
704 out = ROUND_POWER_OF_TWO((out * cospi_16_64), DCT_CONST_BITS);
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.c 373 tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS);

Completed in 758 milliseconds

12