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

  /external/libvpx/libvpx/vp8/encoder/x86/
vp8_enc_stubs_mmx.c 27 short *quant_ptr, short *dqcoeff_ptr);
36 short *dqcoeff_ptr = d->dqcoeff; local
48 dqcoeff_ptr
quantize_mmx.asm 17 ; short *quant_ptr, short *dqcoeff_ptr);
67 mov rax, arg(7) ;dqcoeff_ptr
107 mov rax, arg(7) ;dqcoeff_ptr
148 mov rax, arg(7) ;dqcoeff_ptr
189 mov rax, arg(7) ;dqcoeff_ptr
  /external/libvpx/libvpx/vp8/encoder/
quantize.c 33 short *dqcoeff_ptr = d->dqcoeff; local
37 vpx_memset(dqcoeff_ptr, 0, 32);
57 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
78 short *dqcoeff_ptr = d->dqcoeff; local
93 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
118 short *dqcoeff_ptr = d->dqcoeff; local
123 vpx_memset(dqcoeff_ptr, 0, 32);
145 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
172 short *dqcoeff_ptr; local
179 dqcoeff_ptr = d->dqcoeff
229 short *dqcoeff_ptr = d->dqcoeff; local
    [all...]
encodemb.c 234 short *dqcoeff_ptr; local
271 dqcoeff_ptr = d->dqcoeff;
328 dx = dqcoeff_ptr[rc] - coeff_ptr[rc];
459 dqcoeff_ptr[rc] = x * dequant_ptr[rc];
  /external/libvpx/libvpx/vp9/encoder/
vp9_quantize.c 27 int16_t *dqcoeff_ptr, int16_t *dequant_ptr,
36 vpx_memset(dqcoeff_ptr, 0, n_coeffs*sizeof(int16_t));
77 dqcoeff_ptr[rc] = x * dequant_ptr[rc != 0]; // dequantized value
92 int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr,
103 vpx_memset(dqcoeff_ptr, 0, n_coeffs*sizeof(int16_t));
141 dqcoeff_ptr[rc] = x * dequant_ptr[rc != 0] / 2; // dequantized value
vp9_encodemb.c 155 int16_t *dqcoeff_ptr; local
173 dqcoeff_ptr = BLOCK_OFFSET(pd->dqcoeff, block);
247 dx = mul * (dqcoeff_ptr[rc] - coeff_ptr[rc]);
354 vpx_memset(dqcoeff_ptr, 0, sizeof(*dqcoeff_ptr) * (16 << (tx_size * 2)));
362 dqcoeff_ptr[rc] = (x * dequant_ptr[rc != 0]) / mul;

Completed in 2515 milliseconds