HomeSort by relevance Sort by last modified time
    Searched refs:dequant_ptr (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
vp8_enc_stubs_mmx.c 25 short *qcoeff_ptr, short *dequant_ptr,
37 short *dequant_ptr = d->dequant; local
43 dequant_ptr,
quantize_mmx.asm 15 ; short *qcoeff_ptr,short *dequant_ptr,
63 mov rax, arg(3) ;dequant_ptr
103 mov rax, arg(3) ;dequant_ptr
144 mov rax, arg(3) ;dequant_ptr
185 mov rax, arg(3) ;dequant_ptr
  /external/libvpx/libvpx/vp8/encoder/x86/
vp8_enc_stubs_mmx.c 25 short *qcoeff_ptr, short *dequant_ptr,
37 short *dequant_ptr = d->dequant; local
43 dequant_ptr,
quantize_mmx.asm 15 ; short *qcoeff_ptr,short *dequant_ptr,
63 mov rax, arg(3) ;dequant_ptr
103 mov rax, arg(3) ;dequant_ptr
144 mov rax, arg(3) ;dequant_ptr
185 mov rax, arg(3) ;dequant_ptr
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
vp8_enc_stubs_mmx.c 25 short *qcoeff_ptr, short *dequant_ptr,
37 short *dequant_ptr = d->dequant; local
43 dequant_ptr,
quantize_mmx.asm 15 ; short *qcoeff_ptr,short *dequant_ptr,
63 mov rax, arg(3) ;dequant_ptr
103 mov rax, arg(3) ;dequant_ptr
144 mov rax, arg(3) ;dequant_ptr
185 mov rax, arg(3) ;dequant_ptr
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
quantize.c 34 short *dequant_ptr = d->dequant; local
57 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
79 short *dequant_ptr = d->dequant; local
93 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
119 short *dequant_ptr = d->dequant; local
145 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
173 short *dequant_ptr; local
180 dequant_ptr = d->dequant;
192 dq = dequant_ptr[rc];
230 short *dequant_ptr = d->dequant local
    [all...]
encodemb.c 231 const short *dequant_ptr; local
268 dequant_ptr = d->dequant;
340 if((abs(x)*dequant_ptr[rc]>abs(coeff_ptr[rc])) &&
341 (abs(x)*dequant_ptr[rc]<abs(coeff_ptr[rc])+dequant_ptr[rc]))
397 dx -= (dequant_ptr[rc] + sz) ^ sz;
459 dqcoeff_ptr[rc] = x * dequant_ptr[rc];
  /external/libvpx/libvpx/vp8/encoder/
quantize.c 34 short *dequant_ptr = d->dequant; local
57 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
79 short *dequant_ptr = d->dequant; local
93 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
119 short *dequant_ptr = d->dequant; local
145 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
173 short *dequant_ptr; local
180 dequant_ptr = d->dequant;
192 dq = dequant_ptr[rc];
230 short *dequant_ptr = d->dequant local
    [all...]
encodemb.c 231 const short *dequant_ptr; local
268 dequant_ptr = d->dequant;
340 if((abs(x)*dequant_ptr[rc]>abs(coeff_ptr[rc])) &&
341 (abs(x)*dequant_ptr[rc]<abs(coeff_ptr[rc])+dequant_ptr[rc]))
397 dx -= (dequant_ptr[rc] + sz) ^ sz;
459 dqcoeff_ptr[rc] = x * dequant_ptr[rc];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
quantize.c 34 short *dequant_ptr = d->dequant; local
57 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
79 short *dequant_ptr = d->dequant; local
93 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
119 short *dequant_ptr = d->dequant; local
145 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
173 short *dequant_ptr; local
180 dequant_ptr = d->dequant;
192 dq = dequant_ptr[rc];
230 short *dequant_ptr = d->dequant local
    [all...]
encodemb.c 231 const short *dequant_ptr; local
268 dequant_ptr = d->dequant;
340 if((abs(x)*dequant_ptr[rc]>abs(coeff_ptr[rc])) &&
341 (abs(x)*dequant_ptr[rc]<abs(coeff_ptr[rc])+dequant_ptr[rc]))
397 dx -= (dequant_ptr[rc] + sz) ^ sz;
459 dqcoeff_ptr[rc] = x * dequant_ptr[rc];
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_quantize.c 27 const int16_t *dequant_ptr,
65 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0];
81 const int16_t *dequant_ptr,
122 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2;
vp9_encodemb.c 117 const int16_t *dequant_ptr = pd->dequant; local
186 if ((abs(x) * dequant_ptr[rc != 0] > abs(coeff[rc]) * mul) &&
187 (abs(x) * dequant_ptr[rc != 0] < abs(coeff[rc]) * mul +
188 dequant_ptr[rc != 0]))
228 dx -= (dequant_ptr[rc != 0] + sz) ^ sz;
285 dqcoeff[rc] = (x * dequant_ptr[rc != 0]) / mul;
  /external/libvpx/libvpx/vp9/encoder/
vp9_quantize.c 27 const int16_t *dequant_ptr,
64 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0];
80 const int16_t *dequant_ptr,
120 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2;
vp9_encodemb.c 131 const int16_t *dequant_ptr = pd->dequant; local
199 if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff[rc]) * mul) &&
200 (abs(x)*dequant_ptr[rc != 0] < abs(coeff[rc]) * mul +
201 dequant_ptr[rc != 0]))
241 dx -= (dequant_ptr[rc != 0] + sz) ^ sz;
298 dqcoeff[rc] = (x * dequant_ptr[rc != 0]) / mul;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_quantize.c 27 const int16_t *dequant_ptr,
64 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0];
80 const int16_t *dequant_ptr,
120 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2;
vp9_encodemb.c 131 const int16_t *dequant_ptr = pd->dequant; local
199 if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff[rc]) * mul) &&
200 (abs(x)*dequant_ptr[rc != 0] < abs(coeff[rc]) * mul +
201 dequant_ptr[rc != 0]))
241 dx -= (dequant_ptr[rc != 0] + sz) ^ sz;
298 dqcoeff[rc] = (x * dequant_ptr[rc != 0]) / mul;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 77 vld1.s16 {q6, q7}, [r8@128] ;load dequant_ptr[i]
211 vld1.s16 {q2, q3}, [r4@128] ; load dequant_ptr[i]
  /external/libvpx/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 77 vld1.s16 {q6, q7}, [r8@128] ;load dequant_ptr[i]
211 vld1.s16 {q2, q3}, [r4@128] ; load dequant_ptr[i]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 77 vld1.s16 {q6, q7}, [r8@128] ;load dequant_ptr[i]
211 vld1.s16 {q2, q3}, [r4@128] ; load dequant_ptr[i]
  /external/chromium_org/third_party/libvpx/source/config/linux/arm/
vp9_rtcd.h 331 void vp9_quantize_b_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
334 void vp9_quantize_b_32x32_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
    [all...]
  /external/chromium_org/third_party/libvpx/source/config/linux/arm64/
vp9_rtcd.h 331 void vp9_quantize_b_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
334 void vp9_quantize_b_32x32_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
    [all...]
  /external/chromium_org/third_party/libvpx/source/config/linux/generic/
vp9_rtcd.h 331 void vp9_quantize_b_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
334 void vp9_quantize_b_32x32_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
    [all...]
  /external/chromium_org/third_party/libvpx/source/config/linux/mipsel/
vp9_rtcd.h 331 void vp9_quantize_b_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
334 void vp9_quantize_b_32x32_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
    [all...]

Completed in 1417 milliseconds

1 2