/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); 43 short *round_ptr = &b->Round[0][0]; 60 y = ((x+round_ptr[i])*quant_ptr[i])>>16; // quantize (x)
|
/external/libvpx/vp8/encoder/ |
quantize.c | 28 short *round_ptr = b->round; local 51 x += round_ptr[rc]; 74 short *round_ptr = b->round; local 89 y = ((x + round_ptr[rc]) * quant_ptr[rc]) >> 16; // quantize (x) 113 short *round_ptr = b->round; local 139 x += round_ptr[rc]; 225 short *round_ptr = b->round; local 253 y = ((x + round_ptr[rc]) * quant_ptr[rc]) >> 16; // quantize (x)
|
/external/libvpx/vp8/encoder/x86/ |
x86_csystemdependent.c | 27 short *scan_mask, short *round_ptr, 34 short *round_ptr = b->round; local 47 round_ptr, 86 const short *inv_scan_order, short *round_ptr, 92 short *round_ptr = b->round; local 103 round_ptr, 142 short *round_ptr,
|
quantize_ssse3.asm | 16 ; short *round_ptr, 30 mov rdi, arg(3) ;round_ptr
|
quantize_mmx.asm | 16 ; short *scan_mask, short *round_ptr, 49 mov rcx, arg(5) ;round_ptr
|
quantize_sse2.asm | 64 mov rdx, [rdi + vp8_block_round] ; round_ptr 246 ; short *round_ptr, | 4 261 mov rdi, arg(4) ;round_ptr
|
/external/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 26 ; stack short *round_ptr 48 ldr r0, [sp, #8] ;load round_ptr 55 vld1.s16 {q6, q7}, [r0] ;load round_ptr [0-15]
|