/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); 44 short *quant_ptr = &b->Quant[0][0]; 60 y = ((x+round_ptr[i])*quant_ptr[i])>>16; // quantize (x)
|
/external/libvpx/vp8/encoder/ |
quantize.c | 29 short *quant_ptr = b->quant_fast; local 52 y = (((x * quant_ptr[rc]) >> 16) + x) 75 short *quant_ptr = b->quant_fast; local 89 y = ((x + round_ptr[rc]) * quant_ptr[rc]) >> 16; // quantize (x) 114 short *quant_ptr = b->quant; local 140 y = (((x * quant_ptr[rc]) >> 16) + x) 168 short *quant_ptr; local 175 quant_ptr = b->quant; 200 y = (((x * quant_ptr[rc]) >> 16) + x) >> quant_shift_ptr[rc]; 226 short *quant_ptr = b->quant local [all...] |
/external/libvpx/vp8/encoder/x86/ |
x86_csystemdependent.c | 28 short *quant_ptr, short *dqcoeff_ptr); 35 short *quant_ptr = b->quant_fast; local 48 quant_ptr, 87 short *quant_ptr, short *dqcoeff_ptr); 93 short *quant_ptr = b->quant_fast; local 104 quant_ptr, 143 short *quant_ptr, short *dqcoeff_ptr);
|
quantize_ssse3.asm | 17 ; short *quant_ptr, short *dqcoeff_ptr); 31 mov rsi, arg(4) ;quant_ptr
|
quantize_sse2.asm | 86 mov rcx, [rdi + vp8_block_quant] ; quant_ptr 112 ; y = x * quant_ptr >> 16 247 ; short *quant_ptr, | 5 262 mov rsi, arg(5) ;quant_ptr
|
quantize_mmx.asm | 17 ; short *quant_ptr, short *dqcoeff_ptr); 46 mov rdx, arg(6) ;quant_ptr
|
/external/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 27 ; stack short *quant_ptr 49 ldr r12, [sp, #12] ;load quant_ptr 56 vld1.s16 {q8, q9}, [r12] ;load quant_ptr [0-15]
|
/external/jpeg/ |
jdmarker.c | 496 JQUANT_TBL *quant_ptr; local 514 quant_ptr = cinfo->quant_tbl_ptrs[n]; 522 quant_ptr->quantval[jpeg_natural_order[i]] = (UINT16) tmp; 528 quant_ptr->quantval[i], quant_ptr->quantval[i+1], 529 quant_ptr->quantval[i+2], quant_ptr->quantval[i+3], 530 quant_ptr->quantval[i+4], quant_ptr->quantval[i+5], 531 quant_ptr->quantval[i+6], quant_ptr->quantval[i+7]) [all...] |