HomeSort by relevance Sort by last modified time
    Searched refs:abs_coeff (Results 1 - 5 of 5) sorted by null

  /external/libvpx/libvpx/vpx_dsp/
quantize.c 22 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
29 tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX);
53 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
54 const int64_t tmp = abs_coeff + round_ptr[0];
73 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
80 tmp = clamp(abs_coeff + ROUND_POWER_OF_TWO(round_ptr[rc != 0], 1),
109 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
110 const int64_t tmp = abs_coeff + ROUND_POWER_OF_TWO(round_ptr[0], 1);
155 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
157 if (abs_coeff >= zbins[rc != 0])
207 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
265 int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
323 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_quantize.c 48 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
50 int tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX);
95 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
96 const int64_t tmp = abs_coeff + round_ptr[rc != 0];
133 int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
135 if (abs_coeff >= (dequant_ptr[rc != 0] >> 2)) {
136 abs_coeff += ROUND_POWER_OF_TWO(round_ptr[rc != 0], 1);
137 abs_coeff = clamp(abs_coeff, INT16_MIN, INT16_MAX);
138 tmp = (abs_coeff * quant_ptr[rc != 0]) >> 15
176 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
    [all...]
vp9_dct.c 659 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
661 int tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_quantize.c 57 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
59 if (abs_coeff >= zbins[rc != 0]) {
60 int tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX);
113 int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
114 abs_coeff += ROUND_POWER_OF_TWO(round_ptr[rc != 0], 1);
115 abs_coeff = clamp(abs_coeff, INT16_MIN, INT16_MAX);
116 tmp = ((((abs_coeff * quant_ptr[rc != 0]) >> 16) + abs_coeff) *
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_quantize_intrin_sse2.c 71 int abs_coeff[4]; local
82 _mm_storeu_si128((__m128i*)abs_coeff, coeffs);
88 const int64_t tmp1 = abs_coeff[j] + round_ptr[k != 0];
165 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign; local
166 const int64_t tmp1 = abs_coeff

Completed in 249 milliseconds