/external/libvpx/vp8/encoder/arm/ |
quantize_arm.c | 27 extern int vp8_fast_quantize_b_neon_func(short *coeff_ptr, short *zbin_ptr, short *qcoeff_ptr, short *dqcoeff_ptr, short *dequant_ptr, const short *scan_mask, short *round_ptr, short *quant_ptr); 46 short *dqcoeff_ptr= d->dqcoeff; 64 dqcoeff_ptr[i] = x1 * dequant_ptr[i]; // dequantized value 74 dqcoeff_ptr[i] = 0; // dequantized value
|
/external/libvpx/vp8/encoder/ |
quantize.c | 32 short *dqcoeff_ptr = d->dqcoeff; local 36 vpx_memset(dqcoeff_ptr, 0, 32); 56 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; // dequantized value 77 short *dqcoeff_ptr = d->dqcoeff; local 92 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; // dequantized value 117 short *dqcoeff_ptr = d->dqcoeff; local 122 vpx_memset(dqcoeff_ptr, 0, 32); 144 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; // dequantized value 171 short *dqcoeff_ptr; local 178 dqcoeff_ptr = d->dqcoeff 228 short *dqcoeff_ptr = d->dqcoeff; local [all...] |
encodemb.c | 270 short *dqcoeff_ptr; local 307 dqcoeff_ptr = d->dqcoeff; 364 dx = dqcoeff_ptr[rc] - coeff_ptr[rc]; 495 dqcoeff_ptr[rc] = x * dequant_ptr[rc];
|
/external/libvpx/vp8/encoder/x86/ |
x86_csystemdependent.c | 28 short *quant_ptr, short *dqcoeff_ptr); 37 short *dqcoeff_ptr = d->dqcoeff; local 49 dqcoeff_ptr 87 short *quant_ptr, short *dqcoeff_ptr); 95 short *dqcoeff_ptr = d->dqcoeff; local 105 dqcoeff_ptr 143 short *quant_ptr, short *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
|
quantize_ssse3.asm | 17 ; short *quant_ptr, short *dqcoeff_ptr); 56 mov rsi, arg(5) ;dqcoeff_ptr
|
quantize_sse2.asm | 180 mov rsi, [rdi + vp8_blockd_dqcoeff] ; dqcoeff_ptr 248 ; short *dqcoeff_ptr) | 6 288 mov rsi, arg(6) ;dqcoeff_ptr
|
/external/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 23 ; r3 short *dqcoeff_ptr
|