HomeSort by relevance Sort by last modified time
    Searched defs:coeff_ptr (Results 1 - 5 of 5) sorted by null

  /external/libvpx/libvpx/vp8/encoder/x86/
vp8_enc_stubs_sse2.c 17 int vp8_mbblock_error_xmm_impl(short *coeff_ptr, short *dcoef_ptr, int dc);
20 short *coeff_ptr = mb->block[0].coeff; local
22 return vp8_mbblock_error_xmm_impl(coeff_ptr, dcoef_ptr, dc);
vp8_enc_stubs_mmx.c 24 int vp8_fast_quantize_b_impl_mmx(short *coeff_ptr, short *zbin_ptr,
31 short *coeff_ptr = b->coeff; local
40 coeff_ptr,
52 int vp8_mbblock_error_mmx_impl(short *coeff_ptr, short *dcoef_ptr, int dc);
55 short *coeff_ptr = mb->block[0].coeff; local
57 return vp8_mbblock_error_mmx_impl(coeff_ptr, dcoef_ptr, dc);
  /external/libvpx/libvpx/vp8/encoder/
quantize.c 27 short *coeff_ptr = b->coeff; local
44 z = coeff_ptr[rc];
74 short *coeff_ptr = b->coeff; local
85 z = coeff_ptr[rc];
112 short *coeff_ptr = b->coeff; local
130 z = coeff_ptr[rc];
168 short *coeff_ptr; local
175 coeff_ptr = b->coeff;
191 z = coeff_ptr[rc];
224 short *coeff_ptr = b->coeff local
    [all...]
encodemb.c 232 const short *coeff_ptr; local
269 coeff_ptr = b->coeff;
328 dx = dqcoeff_ptr[rc] - coeff_ptr[rc];
340 if((abs(x)*dequant_ptr[rc]>abs(coeff_ptr[rc])) &&
341 (abs(x)*dequant_ptr[rc]<abs(coeff_ptr[rc])+dequant_ptr[rc]))
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 153 const int16_t *coeff_ptr = BLOCK_OFFSET(mb->plane[plane].coeff, block); local
247 dx = mul * (dqcoeff_ptr[rc] - coeff_ptr[rc]);
260 if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff_ptr[rc]) * mul) &&
261 (abs(x)*dequant_ptr[rc != 0] < abs(coeff_ptr[rc]) * mul +

Completed in 397 milliseconds