Searched refs:dequant_ptr (Results 1 - 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/x86/
H A Dvp8_enc_stubs_mmx.c25 short *qcoeff_ptr, short *dequant_ptr,
37 short *dequant_ptr = d->dequant; local
43 dequant_ptr,
H A Dquantize_mmx.asm15 ; 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/
H A Dquantize.c34 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 local
[all...]
H A Dencodemb.c231 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/vp9/encoder/
H A Dvp9_quantize.c30 const int16_t *dequant_ptr,
67 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0];
83 const int16_t *dequant_ptr,
131 dqcoeff_ptr[rc] = x * dequant_ptr[rc != 0] / 2; // dequantized value
25 vp9_quantize_b_c(const int16_t *coeff_ptr, intptr_t count, 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) argument
77 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) argument
H A Dvp9_encodemb.c139 const int16_t *dequant_ptr = pd->dequant; local
207 if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff_ptr[rc]) * mul) &&
208 (abs(x)*dequant_ptr[rc != 0] < abs(coeff_ptr[rc]) * mul +
209 dequant_ptr[rc != 0]))
251 dx -= (dequant_ptr[rc != 0] + sz) ^ sz;
308 dqcoeff_ptr[rc] = (x * dequant_ptr[rc != 0]) / mul;
/external/libvpx/libvpx/vp8/encoder/arm/neon/
H A Dfastquantizeb_neon.asm77 vld1.s16 {q6, q7}, [r8@128] ;load dequant_ptr[i]
211 vld1.s16 {q2, q3}, [r4@128] ; load dequant_ptr[i]

Completed in 133 milliseconds