Home
last modified time | relevance | path

Searched refs:coeff_abs (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/arm/
Dquantize_neon.c62 const int16x8_t coeff_abs = vabsq_s16(coeff); in vpx_quantize_b_neon() local
65 vreinterpretq_s16_u16(vcgeq_s16(coeff_abs, zbin)); in vpx_quantize_b_neon()
67 const int16x8_t rounded = vqaddq_s16(coeff_abs, round); in vpx_quantize_b_neon()
112 const int16x8_t coeff_abs = vabsq_s16(coeff); in vpx_quantize_b_neon() local
115 vreinterpretq_s16_u16(vcgeq_s16(coeff_abs, zbin)); in vpx_quantize_b_neon()
117 const int16x8_t rounded = vqaddq_s16(coeff_abs, round); in vpx_quantize_b_neon()
222 const int16x8_t coeff_abs = vabsq_s16(coeff); in vpx_quantize_b_32x32_neon() local
225 vreinterpretq_s16_u16(vcgeq_s16(coeff_abs, zbin)); in vpx_quantize_b_32x32_neon()
227 const int16x8_t rounded = vqaddq_s16(coeff_abs, round); in vpx_quantize_b_32x32_neon()
270 const int16x8_t coeff_abs = vabsq_s16(coeff); in vpx_quantize_b_32x32_neon() local
[all …]
/external/libvpx/libvpx/vp9/encoder/arm/neon/
Dvp9_quantize_neon.c161 const int16x8_t coeff_abs = vabsq_s16(coeff); in vp9_quantize_fp_32x32_neon() local
163 vreinterpretq_s16_u16(vcgeq_s16(coeff_abs, dequant_thresh)); in vp9_quantize_fp_32x32_neon()
165 int16x8_t qcoeff = vqaddq_s16(coeff_abs, round); in vp9_quantize_fp_32x32_neon()
218 const int16x8_t coeff_abs = vabsq_s16(coeff); in vp9_quantize_fp_32x32_neon() local
220 vreinterpretq_s16_u16(vcgeq_s16(coeff_abs, dequant_thresh)); in vp9_quantize_fp_32x32_neon()
222 int16x8_t qcoeff = vqaddq_s16(coeff_abs, round); in vp9_quantize_fp_32x32_neon()
/external/libvpx/libvpx/vpx_dsp/ppc/
Dquantize_vsx.c39 static INLINE int16x8_t quantize_coeff(int16x8_t coeff, int16x8_t coeff_abs, in quantize_coeff() argument
42 const int16x8_t rounded = vec_vaddshs(coeff_abs, round); in quantize_coeff()
51 static INLINE int16x8_t quantize_coeff_32(int16x8_t coeff, int16x8_t coeff_abs, in quantize_coeff_32() argument
55 const int16x8_t rounded = vec_vaddshs(coeff_abs, round); in quantize_coeff_32()