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

  /external/libvpx/libvpx/vpx_dsp/
quantize.c 23 const int coeff_sign = (coeff >> 31); local
24 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
33 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
53 const int coeff_sign = (coeff >> 31); local
54 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
57 qcoeff_ptr[0] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign);
72 const int coeff_sign = (coeff >> 31); local
105 const int coeff_sign = (coeff >> 31); local
150 const int coeff_sign = (coeff >> 31); local
201 const int coeff_sign = (coeff >> 31); local
253 const int coeff_sign = (coeff >> 31); local
306 const int coeff_sign = (coeff >> 31); local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
quantize_neon.c 45 const int16x8_t coeff_sign = vshrq_n_s16(coeff, 15); local
62 qcoeff = veorq_s16(qcoeff, coeff_sign);
63 qcoeff = vsubq_s16(qcoeff, coeff_sign);
97 const int16x8_t coeff_sign = vshrq_n_s16(coeff, 15); local
114 qcoeff = veorq_s16(qcoeff, coeff_sign);
115 qcoeff = vsubq_s16(qcoeff, coeff_sign);
181 const int16x8_t coeff_sign = vshrq_n_s16(coeff, 15); local
200 qcoeff = veorq_s16(qcoeff, coeff_sign);
201 qcoeff = vsubq_s16(qcoeff, coeff_sign);
241 const int16x8_t coeff_sign = vshrq_n_s16(coeff, 15) local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_quantize_intrin_sse2.c 67 int coeff_sign[4]; local
77 _mm_storeu_si128((__m128i *)coeff_sign, coeffs_sign);
86 qcoeff_ptr[k] = (int)(abs_qcoeff ^ coeff_sign[j]) - coeff_sign[j];
143 const int coeff_sign = (coeff >> 31); local
144 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
149 qcoeff_ptr[rc] = (int)(abs_qcoeff ^ coeff_sign) - coeff_sign;
  /external/libvpx/libvpx/vp9/encoder/
vp9_quantize.c 43 const int coeff_sign = (coeff >> 31); local
44 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
49 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
79 const int coeff_sign = (coeff >> 31); local
80 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
83 qcoeff_ptr[rc] = (tran_low_t)(abs_qcoeff ^ coeff_sign) - coeff_sign;
110 const int coeff_sign = (coeff >> 31); local
146 const int coeff_sign = (coeff >> 31); local
    [all...]
vp9_dct.c 645 const int coeff_sign = (coeff >> 31); local
646 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
651 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
  /external/libvpx/libvpx/vp9/encoder/arm/neon/
vp9_quantize_neon.c 140 const int16x8_t coeff_sign = vshrq_n_s16(coeff, 15); local
158 qcoeff = veorq_s16(qcoeff, coeff_sign);
159 qcoeff = vsubq_s16(qcoeff, coeff_sign);
194 const int16x8_t coeff_sign = vshrq_n_s16(coeff, 15); local
204 qcoeff = veorq_s16(qcoeff, coeff_sign);
205 qcoeff = vsubq_s16(qcoeff, coeff_sign);
  /external/libvpx/libvpx/test/
vp9_quantize_test.cc 156 int coeff_sign[16]; local
162 coeff_sign[y] = (coeff >> 31);
163 abs_coeff[y] = (coeff ^ coeff_sign[y]) - coeff_sign[y];
178 qcoeff_ptr[rc] = (tmp ^ coeff_sign[y]) - coeff_sign[y];

Completed in 474 milliseconds