Searched defs:qcoeff_ptr (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
H A Dquantize_sse2.c30 qcoeff_ptr[z] = y[z]; \
40 short *qcoeff_ptr = d->qcoeff; local
59 vpx_memset(qcoeff_ptr, 0, 32);
H A Dvp8_enc_stubs_mmx.c25 short *qcoeff_ptr, short *dequant_ptr,
35 short *qcoeff_ptr = d->qcoeff; local
42 qcoeff_ptr,
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dquantize_sse2.c30 qcoeff_ptr[z] = y[z]; \
40 short *qcoeff_ptr = d->qcoeff; local
59 vpx_memset(qcoeff_ptr, 0, 32);
H A Dvp8_enc_stubs_mmx.c25 short *qcoeff_ptr, short *dequant_ptr,
35 short *qcoeff_ptr = d->qcoeff; local
42 qcoeff_ptr,
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddetokenize.c180 short *qcoeff_ptr; local
188 qcoeff_ptr = &x->qcoeff[0];
197 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr + 24 * 16);
217 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), skip_dc, qcoeff_ptr);
223 qcoeff_ptr += 16;
235 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr);
240 qcoeff_ptr += 16;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dtokenize.c115 const short *qcoeff_ptr; local
122 qcoeff_ptr = b->qcoeff;
142 v = qcoeff_ptr[0];
158 v = qcoeff_ptr[rc];
206 const short *qcoeff_ptr; local
219 qcoeff_ptr = b->qcoeff;
241 v = qcoeff_ptr[c];
259 v = qcoeff_ptr[rc];
294 qcoeff_ptr = b->qcoeff;
314 v = qcoeff_ptr[
[all...]
H A Dquantize.c32 short *qcoeff_ptr = d->qcoeff; local
36 vpx_memset(qcoeff_ptr, 0, 32);
56 qcoeff_ptr[rc] = x; /* write to destination */
77 short *qcoeff_ptr = d->qcoeff; local
92 qcoeff_ptr[rc] = x; /* write to destination */
117 short *qcoeff_ptr = d->qcoeff; local
122 vpx_memset(qcoeff_ptr, 0, 32);
144 qcoeff_ptr[rc] = x; /* write to destination */
171 short *qcoeff_ptr; local
178 qcoeff_ptr
228 short *qcoeff_ptr = d->qcoeff; local
[all...]
H A Dencodemb.c233 short *qcoeff_ptr; local
270 qcoeff_ptr = d->qcoeff;
297 x = qcoeff_ptr[rc];
458 qcoeff_ptr[rc] = x;
H A Drdopt.c527 short *qcoeff_ptr = b->qcoeff; local
534 const int v = qcoeff_ptr[vp8_default_zig_zag1d[c]];
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_quantize.c26 int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr,
37 vpx_memset(qcoeff_ptr, 0, count * sizeof(int16_t));
64 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
65 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0];
80 int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr,
93 vpx_memset(qcoeff_ptr, 0, n_coeffs * sizeof(int16_t));
121 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
122 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2;
22 vp9_quantize_b_c(const int16_t *coeff_ptr, intptr_t count, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan) argument
75 vp9_quantize_b_32x32_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan) argument
/external/libvpx/libvpx/vp8/decoder/
H A Ddetokenize.c180 short *qcoeff_ptr; local
188 qcoeff_ptr = &x->qcoeff[0];
197 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr + 24 * 16);
217 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), skip_dc, qcoeff_ptr);
223 qcoeff_ptr += 16;
235 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr);
240 qcoeff_ptr += 16;
/external/libvpx/libvpx/vp8/encoder/
H A Dtokenize.c115 const short *qcoeff_ptr; local
122 qcoeff_ptr = b->qcoeff;
142 v = qcoeff_ptr[0];
158 v = qcoeff_ptr[rc];
206 const short *qcoeff_ptr; local
219 qcoeff_ptr = b->qcoeff;
241 v = qcoeff_ptr[c];
259 v = qcoeff_ptr[rc];
294 qcoeff_ptr = b->qcoeff;
314 v = qcoeff_ptr[
[all...]
H A Dquantize.c32 short *qcoeff_ptr = d->qcoeff; local
36 vpx_memset(qcoeff_ptr, 0, 32);
56 qcoeff_ptr[rc] = x; /* write to destination */
77 short *qcoeff_ptr = d->qcoeff; local
92 qcoeff_ptr[rc] = x; /* write to destination */
117 short *qcoeff_ptr = d->qcoeff; local
122 vpx_memset(qcoeff_ptr, 0, 32);
144 qcoeff_ptr[rc] = x; /* write to destination */
171 short *qcoeff_ptr; local
178 qcoeff_ptr
228 short *qcoeff_ptr = d->qcoeff; local
[all...]
H A Dencodemb.c233 short *qcoeff_ptr; local
270 qcoeff_ptr = d->qcoeff;
297 x = qcoeff_ptr[rc];
458 qcoeff_ptr[rc] = x;
H A Drdopt.c527 short *qcoeff_ptr = b->qcoeff; local
534 const int v = qcoeff_ptr[vp8_default_zig_zag1d[c]];
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_quantize.c26 int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr,
36 vpx_memset(qcoeff_ptr, 0, count * sizeof(int16_t));
63 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
64 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0];
79 int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr,
91 vpx_memset(qcoeff_ptr, 0, n_coeffs * sizeof(int16_t));
119 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
120 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2;
22 vp9_quantize_b_c(const int16_t *coeff_ptr, intptr_t count, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan) argument
74 vp9_quantize_b_32x32_c(const int16_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_value, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan) argument

Completed in 221 milliseconds