/external/libvpx/libvpx/vpx_dsp/ |
D | quantize.c | 20 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_dc() argument 28 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc() 34 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign; in vpx_quantize_dc() 35 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant; in vpx_quantize_dc() 44 const int16_t quant, tran_low_t *qcoeff_ptr, in vpx_highbd_quantize_dc() argument 49 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_dc() 58 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in vpx_highbd_quantize_dc() 59 dqcoeff_ptr[0] = qcoeff_ptr[0] * dequant; in vpx_highbd_quantize_dc() 68 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_dc_32x32() argument 77 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc_32x32() [all …]
|
D | quantize.h | 23 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 27 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 33 const int16_t quant, tran_low_t *qcoeff_ptr, 38 tran_low_t *qcoeff_ptr,
|
/external/libaom/libaom/aom_dsp/ |
D | quantize.c | 19 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in quantize_b_adaptive_helper_c() argument 29 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in quantize_b_adaptive_helper_c() 70 qcoeff_ptr[rc] = (tmp32 ^ coeff_sign) - coeff_sign; in quantize_b_adaptive_helper_c() 89 if (qcoeff_ptr[rc] == 1 || qcoeff_ptr[rc] == -1) { in quantize_b_adaptive_helper_c() 97 qcoeff_ptr[rc] = 0; in quantize_b_adaptive_helper_c() 110 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in quantize_b_helper_c() argument 121 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in quantize_b_helper_c() 155 qcoeff_ptr[rc] = (tmp32 ^ coeff_sign) - coeff_sign; in quantize_b_helper_c() 172 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in highbd_quantize_b_adaptive_helper_c() argument 185 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in highbd_quantize_b_adaptive_helper_c() [all …]
|
D | quantize.h | 26 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, 36 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, 43 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, 50 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, 57 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, 65 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, 72 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, 79 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, 86 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, 95 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, [all …]
|
/external/libaom/libaom/aom_dsp/x86/ |
D | adaptive_quantize_sse2.c | 22 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in aom_quantize_b_adaptive_sse2() argument 86 _mm_store_si128((__m128i *)(qcoeff_ptr), zero); in aom_quantize_b_adaptive_sse2() 87 _mm_store_si128((__m128i *)(qcoeff_ptr + 4), zero); in aom_quantize_b_adaptive_sse2() 88 _mm_store_si128((__m128i *)(qcoeff_ptr + 8), zero); in aom_quantize_b_adaptive_sse2() 89 _mm_store_si128((__m128i *)(qcoeff_ptr + 12), zero); in aom_quantize_b_adaptive_sse2() 115 store_coefficients(qcoeff0, qcoeff_ptr); in aom_quantize_b_adaptive_sse2() 116 store_coefficients(qcoeff1, qcoeff_ptr + 8); in aom_quantize_b_adaptive_sse2() 148 _mm_store_si128((__m128i *)(qcoeff_ptr + index), zero); in aom_quantize_b_adaptive_sse2() 149 _mm_store_si128((__m128i *)(qcoeff_ptr + index + 4), zero); in aom_quantize_b_adaptive_sse2() 150 _mm_store_si128((__m128i *)(qcoeff_ptr + index + 8), zero); in aom_quantize_b_adaptive_sse2() [all …]
|
D | highbd_quantize_intrin_sse2.c | 23 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in aom_highbd_quantize_b_sse2() argument 41 memset(qcoeff_ptr, 0, count * sizeof(*qcoeff_ptr)); in aom_highbd_quantize_b_sse2() 83 qcoeff_ptr[k] = (int)(abs_qcoeff ^ coeff_sign[j]) - coeff_sign[j]; in aom_highbd_quantize_b_sse2() 84 dqcoeff_ptr[k] = qcoeff_ptr[k] * dequant_ptr[k != 0]; in aom_highbd_quantize_b_sse2() 95 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in aom_highbd_quantize_b_32x32_sse2() argument 114 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in aom_highbd_quantize_b_32x32_sse2() 143 qcoeff_ptr[rc] = (int)(abs_qcoeff ^ coeff_sign) - coeff_sign; in aom_highbd_quantize_b_32x32_sse2() 144 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2; in aom_highbd_quantize_b_32x32_sse2() 153 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in aom_highbd_quantize_b_64x64_sse2() argument 172 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in aom_highbd_quantize_b_64x64_sse2() [all …]
|
D | quantize_ssse3.c | 67 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in aom_quantize_b_64x64_ssse3() argument 108 _mm_store_si128((__m128i *)(qcoeff_ptr), zero); in aom_quantize_b_64x64_ssse3() 109 _mm_store_si128((__m128i *)(qcoeff_ptr + 4), zero); in aom_quantize_b_64x64_ssse3() 110 _mm_store_si128((__m128i *)(qcoeff_ptr + 8), zero); in aom_quantize_b_64x64_ssse3() 111 _mm_store_si128((__m128i *)(qcoeff_ptr + 12), zero); in aom_quantize_b_64x64_ssse3() 135 store_coefficients(qcoeff0, qcoeff_ptr); in aom_quantize_b_64x64_ssse3() 136 store_coefficients(qcoeff1, qcoeff_ptr + 8); in aom_quantize_b_64x64_ssse3() 159 _mm_store_si128((__m128i *)(qcoeff_ptr + index), zero); in aom_quantize_b_64x64_ssse3() 160 _mm_store_si128((__m128i *)(qcoeff_ptr + index + 4), zero); in aom_quantize_b_64x64_ssse3() 161 _mm_store_si128((__m128i *)(qcoeff_ptr + index + 8), zero); in aom_quantize_b_64x64_ssse3() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | av1_quantize.c | 29 void av1_quantize_skip(intptr_t n_coeffs, tran_low_t *qcoeff_ptr, in av1_quantize_skip() argument 31 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in av1_quantize_skip() 39 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in quantize_fp_helper_c() argument 52 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in quantize_fp_helper_c() 68 qcoeff_ptr[rc] = (tmp32 ^ coeff_sign) - coeff_sign; in quantize_fp_helper_c() 96 qcoeff_ptr[rc] = (tmp32 ^ coeff_sign) - coeff_sign; in quantize_fp_helper_c() 110 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in highbd_quantize_fp_helper_c() argument 143 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in highbd_quantize_fp_helper_c() 148 qcoeff_ptr[rc] = 0; in highbd_quantize_fp_helper_c() 169 qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign); in highbd_quantize_fp_helper_c() [all …]
|
D | av1_quantize.h | 38 tran_low_t *qcoeff_ptr, 109 void av1_quantize_skip(intptr_t n_coeffs, tran_low_t *qcoeff_ptr, 113 const MACROBLOCK_PLANE *p, tran_low_t *qcoeff_ptr, 118 const MACROBLOCK_PLANE *p, tran_low_t *qcoeff_ptr, 123 const MACROBLOCK_PLANE *p, tran_low_t *qcoeff_ptr, 129 tran_low_t *qcoeff_ptr, 136 tran_low_t *qcoeff_ptr, 143 tran_low_t *qcoeff_ptr,
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | quantize_avx.c | 26 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in vpx_quantize_b_avx() argument 63 _mm256_store_si256((__m256i *)(qcoeff_ptr), big_zero); in vpx_quantize_b_avx() 66 _mm256_store_si256((__m256i *)(qcoeff_ptr + 8), big_zero); in vpx_quantize_b_avx() 91 store_tran_low(qcoeff0, qcoeff_ptr); in vpx_quantize_b_avx() 92 store_tran_low(qcoeff1, qcoeff_ptr + 8); in vpx_quantize_b_avx() 115 _mm256_store_si256((__m256i *)(qcoeff_ptr + index), big_zero); in vpx_quantize_b_avx() 118 _mm256_store_si256((__m256i *)(qcoeff_ptr + index + 8), big_zero); in vpx_quantize_b_avx() 133 store_tran_low(qcoeff0, qcoeff_ptr + index); in vpx_quantize_b_avx() 134 store_tran_low(qcoeff1, qcoeff_ptr + index + 8); in vpx_quantize_b_avx() 152 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_b_32x32_avx() argument [all …]
|
D | quantize_ssse3.c | 24 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_b_ssse3() argument 68 store_tran_low(qcoeff0, qcoeff_ptr); in vpx_quantize_b_ssse3() 69 store_tran_low(qcoeff1, qcoeff_ptr + 8); in vpx_quantize_b_ssse3() 97 store_tran_low(qcoeff0, qcoeff_ptr + index); in vpx_quantize_b_ssse3() 98 store_tran_low(qcoeff1, qcoeff_ptr + index + 8); in vpx_quantize_b_ssse3() 118 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_b_32x32_ssse3() argument 172 _mm_store_si128((__m128i *)(qcoeff_ptr), zero); in vpx_quantize_b_32x32_ssse3() 173 _mm_store_si128((__m128i *)(qcoeff_ptr + 8), zero); in vpx_quantize_b_32x32_ssse3() 177 _mm_store_si128((__m128i *)(qcoeff_ptr + 4), zero); in vpx_quantize_b_32x32_ssse3() 178 _mm_store_si128((__m128i *)(qcoeff_ptr + 12), zero); in vpx_quantize_b_32x32_ssse3() [all …]
|
D | highbd_quantize_intrin_sse2.c | 25 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_highbd_quantize_b_sse2() argument 45 memset(qcoeff_ptr, 0, count * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_b_sse2() 87 qcoeff_ptr[k] = (int)(abs_qcoeff ^ coeff_sign[j]) - coeff_sign[j]; in vpx_highbd_quantize_b_sse2() 88 dqcoeff_ptr[k] = qcoeff_ptr[k] * dequant_ptr[k != 0]; in vpx_highbd_quantize_b_sse2() 99 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in vpx_highbd_quantize_b_32x32_sse2() argument 121 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2() 150 qcoeff_ptr[rc] = (int)(abs_qcoeff ^ coeff_sign) - coeff_sign; in vpx_highbd_quantize_b_32x32_sse2() 151 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2; in vpx_highbd_quantize_b_32x32_sse2()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_quantize.c | 26 const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, in vp9_quantize_fp_c() argument 35 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_c() 49 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign; in vp9_quantize_fp_c() 50 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0]; in vp9_quantize_fp_c() 60 const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, in vp9_highbd_quantize_fp_c() argument 71 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_highbd_quantize_fp_c() 83 qcoeff_ptr[rc] = (tran_low_t)(abs_qcoeff ^ coeff_sign) - coeff_sign; in vp9_highbd_quantize_fp_c() 84 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0]; in vp9_highbd_quantize_fp_c() 95 const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, in vp9_quantize_fp_32x32_c() argument 104 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_32x32_c() [all …]
|
/external/libvpx/libvpx/vp8/encoder/mips/mmi/ |
D | vp8_quantize_mmi.c | 27 qcoeff_ptr[rc] = x; \ 38 int16_t *qcoeff_ptr = d->qcoeff; in vp8_fast_quantize_b_mmi() local 189 [qcoeff_ptr] "r"((mips_reg)qcoeff_ptr), in vp8_fast_quantize_b_mmi() 210 int16_t *qcoeff_ptr = d->qcoeff; in vp8_regular_quantize_b_mmi() local 239 : [qcoeff_ptr]"r"(qcoeff_ptr), [dqcoeff_ptr]"r"(dqcoeff_ptr) in vp8_regular_quantize_b_mmi()
|
/external/libaom/libaom/av1/encoder/x86/ |
D | av1_quantize_avx2.c | 139 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in av1_quantize_fp_avx2() argument 155 quantize(&thr, qp, &coeff, iscan_ptr, qcoeff_ptr, dqcoeff_ptr, &eob); in av1_quantize_fp_avx2() 158 qcoeff_ptr += step; in av1_quantize_fp_avx2() 167 quantize(&thr, qp, &coeff, iscan_ptr, qcoeff_ptr, dqcoeff_ptr, &eob); in av1_quantize_fp_avx2() 170 qcoeff_ptr += step; in av1_quantize_fp_avx2() 214 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in av1_quantize_fp_32x32_avx2() argument 230 quantize_32x32(&thr, qp, &coeff, iscan_ptr, qcoeff_ptr, dqcoeff_ptr, &eob); in av1_quantize_fp_32x32_avx2() 233 qcoeff_ptr += step; in av1_quantize_fp_32x32_avx2() 242 quantize_32x32(&thr, qp, &coeff, iscan_ptr, qcoeff_ptr, dqcoeff_ptr, &eob); in av1_quantize_fp_32x32_avx2() 245 qcoeff_ptr += step; in av1_quantize_fp_32x32_avx2() [all …]
|
/external/libvpx/config/x86_64/ |
D | vp9_rtcd.h | 45 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 46 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 47 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 91 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 94 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 112 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 113 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 114 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 117 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 118 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc…
|
/external/libvpx/libvpx/vpx_dsp/ppc/ |
D | quantize_vsx.c | 100 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in vpx_quantize_b_vsx() argument 130 vec_vsx_st(qcoeff0, 0, qcoeff_ptr); in vpx_quantize_b_vsx() 136 vec_vsx_st(qcoeff1, 16, qcoeff_ptr); in vpx_quantize_b_vsx() 170 vec_vsx_st(qcoeff0, off0, qcoeff_ptr); in vpx_quantize_b_vsx() 171 vec_vsx_st(qcoeff1, off1, qcoeff_ptr); in vpx_quantize_b_vsx() 172 vec_vsx_st(qcoeff2, off2, qcoeff_ptr); in vpx_quantize_b_vsx() 202 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in vpx_quantize_b_32x32_vsx() argument 250 vec_vsx_st(qcoeff0, 0, qcoeff_ptr); in vpx_quantize_b_32x32_vsx() 251 vec_vsx_st(qcoeff1, 16, qcoeff_ptr); in vpx_quantize_b_32x32_vsx() 283 vec_vsx_st(qcoeff0, off0, qcoeff_ptr); in vpx_quantize_b_32x32_vsx() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ppc/ |
D | vp9_quantize_vsx.c | 43 const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, in vp9_quantize_fp_vsx() argument 66 vec_vsx_st(qcoeff0, 0, qcoeff_ptr); in vp9_quantize_fp_vsx() 82 vec_vsx_st(qcoeff1, 16, qcoeff_ptr); in vp9_quantize_fp_vsx() 113 vec_vsx_st(qcoeff0, off0, qcoeff_ptr); in vp9_quantize_fp_vsx() 120 vec_vsx_st(qcoeff1, off1, qcoeff_ptr); in vp9_quantize_fp_vsx() 127 vec_vsx_st(qcoeff2, off2, qcoeff_ptr); in vp9_quantize_fp_vsx() 169 const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, in vp9_quantize_fp_32x32_vsx() argument 208 vec_vsx_st(qcoeff0, 0, qcoeff_ptr); in vp9_quantize_fp_32x32_vsx() 227 vec_vsx_st(qcoeff1, 16, qcoeff_ptr); in vp9_quantize_fp_32x32_vsx() 268 vec_vsx_st(qcoeff0, off0, qcoeff_ptr); in vp9_quantize_fp_32x32_vsx() [all …]
|
/external/libvpx/libvpx/vp8/decoder/ |
D | detokenize.c | 147 short *qcoeff_ptr; in vp8_decode_mb_tokens() local 155 qcoeff_ptr = &x->qcoeff[0]; in vp8_decode_mb_tokens() 163 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr + 24 * 16); in vp8_decode_mb_tokens() 180 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), skip_dc, qcoeff_ptr); in vp8_decode_mb_tokens() 186 qcoeff_ptr += 16; in vp8_decode_mb_tokens() 197 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr); in vp8_decode_mb_tokens() 202 qcoeff_ptr += 16; in vp8_decode_mb_tokens()
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | quantize_neon.c | 37 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, in vpx_quantize_b_neon() argument 89 store_s16q_to_tran_low(qcoeff_ptr, qcoeff); in vpx_quantize_b_neon() 90 qcoeff_ptr += 8; in vpx_quantize_b_neon() 140 store_s16q_to_tran_low(qcoeff_ptr, qcoeff); in vpx_quantize_b_neon() 141 qcoeff_ptr += 8; in vpx_quantize_b_neon() 196 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, in vpx_quantize_b_32x32_neon() argument 249 store_s16q_to_tran_low(qcoeff_ptr, qcoeff); in vpx_quantize_b_32x32_neon() 250 qcoeff_ptr += 8; in vpx_quantize_b_32x32_neon() 298 store_s16q_to_tran_low(qcoeff_ptr, qcoeff); in vpx_quantize_b_32x32_neon() 299 qcoeff_ptr += 8; in vpx_quantize_b_32x32_neon()
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_quantize_sse2.c | 22 const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, in vp9_quantize_fp_sse2() argument 38 qcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2() 82 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 83 store_tran_low(qcoeff1, qcoeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2() 151 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 152 store_tran_low(qcoeff1, qcoeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2() 160 store_zero_tran_low(qcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2() 161 store_zero_tran_low(qcoeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2()
|
/external/libvpx/config/arm64/ |
D | vp9_rtcd.h | 43 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 44 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 86 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 89 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 107 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 108 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 111 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 112 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc…
|
/external/libvpx/config/arm-neon/ |
D | vp9_rtcd.h | 43 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 44 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 86 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 89 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 107 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 108 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 111 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 112 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc…
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_rtcd_defs.pl | 131 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 134 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 137 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 195 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 197 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc…
|
/external/libvpx/config/x86/ |
D | vp9_rtcd.h | 45 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 46 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 47 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 91 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 94 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 112 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 113 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc… 116 …block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc…
|