Searched refs:qcoeff (Results 1 - 25 of 63) sorted by path

123

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/
H A Ddequantize_arm.c21 short *Q = d->qcoeff;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/neon/
H A Ddequantizeb_neon.c18 qQ = vld2q_s16(d->qcoeff);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dblockd.h198 short *qcoeff; member in struct:blockd
214 DECLARE_ALIGNED(16, short, qcoeff[400]);
H A Ddequantize.c21 short *Q = d->qcoeff;
H A Dinvtrans.h50 (&xd->block[24].dqcoeff[0], xd->qcoeff);
55 (&xd->block[24].dqcoeff[0], xd->qcoeff);
57 eob_adjust(xd->eobs, xd->qcoeff);
62 (xd->qcoeff, DQC,
H A Dmbpitch.c46 x->block[r].qcoeff = x->qcoeff + r * 16;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
H A Didct_blk_mmx.c20 short *sq = (short *) d->qcoeff;
H A Didctllm_sse2.asm16 ; short *qcoeff - 0
31 mov rax, arg(0) ; qcoeff
99 ; short *qcoeff - 0
116 ; dc is set as first coeff, so no need to load qcoeff
117 mov rax, arg(0) ; qcoeff
139 ; dequantize qcoeff buffer
355 ; short *qcoeff - 0
371 ; dc is set as first coeff, so no need to load qcoeff
372 mov rax, arg(0) ; qcoeff
431 ; short *qcoeff
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddecodeframe.c143 vpx_memset(xd->qcoeff, 0, sizeof(xd->qcoeff));
207 vp8_dequant_idct_add(b->qcoeff, DQC, dst, dst_stride);
212 (b->qcoeff[0] * DQC[0],
215 vpx_memset(b->qcoeff, 0, 2 * sizeof(b->qcoeff[0]));
251 xd->qcoeff);
252 vpx_memset(b->qcoeff, 0, 16 * sizeof(b->qcoeff[0]));
256 b->dqcoeff[0] = b->qcoeff[
[all...]
H A Ddetokenize.c188 qcoeff_ptr = &x->qcoeff[0];
H A Dthreading.c138 vpx_memset(xd->qcoeff, 0, sizeof(xd->qcoeff));
224 vp8_dequant_idct_add(b->qcoeff, DQC, dst, dst_stride);
228 vp8_dc_only_idct_add(b->qcoeff[0] * DQC[0],
230 vpx_memset(b->qcoeff, 0, 2 * sizeof(b->qcoeff[0]));
266 xd->qcoeff);
267 vpx_memset(b->qcoeff, 0, 16 * sizeof(b->qcoeff[0]));
271 b->dqcoeff[0] = b->qcoeff[
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_fast_quantize_b_armv6.asm30 ldr r6, [r1, #vp8_blockd_qcoeff] ; qcoeff
77 str r0, [r6], #4 ; *qcoeff++ = x
87 str r10, [r6], #4 ; *qcoeff++ = x
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/neon/
H A Dfastquantizeb_neon.asm90 vst1.s16 {q4, q5}, [r7] ; store: qcoeff = x1
105 vst1.s16 {q10, q11}, [r6] ; store: qcoeff = x2
216 vst1.s16 {q12, q13}, [r6@128]; store: qcoeff = x1
241 vst1.s16 {q0, q1}, [r6@128] ; qcoeff = 0
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dencodeframe.c1208 (xd->qcoeff+16*16, xd->dequant_uv,
1396 (xd->qcoeff+16*16, xd->dequant_uv,
H A Dencodemb.c263 qcoeff_ptr = d->qcoeff;
491 bd->qcoeff[rc]=0;
H A Dquantize.c26 short *qcoeff_ptr = d->qcoeff;
63 short *qcoeff_ptr = d->qcoeff;
H A Drdopt.c526 short *qcoeff_ptr = b->qcoeff;
H A Dtokenize.c122 qcoeff_ptr = b->qcoeff;
219 qcoeff_ptr = b->qcoeff;
294 qcoeff_ptr = b->qcoeff;
H A Dvp8_asm_enc_offsets.c32 DEFINE(vp8_blockd_qcoeff, offsetof(BLOCKD, qcoeff));
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
H A Dquantize_sse2.c39 short *qcoeff_ptr = d->qcoeff;
132 y0 = _mm_load_si128((__m128i *)(d->qcoeff));
133 y1 = _mm_load_si128((__m128i *)(d->qcoeff + 8));
135 /* dqcoeff = qcoeff * dequant */
184 /* qcoeff = x */
185 _mm_store_si128((__m128i *)(d->qcoeff), x0);
186 _mm_store_si128((__m128i *)(d->qcoeff + 8), x1);
H A Dquantize_sse4.c118 _mm_store_si128((__m128i *)(d->qcoeff), qcoeff0);
119 _mm_store_si128((__m128i *)(d->qcoeff + 8), qcoeff1);
H A Dquantize_ssse3.c88 /* qcoeff = x */
89 _mm_store_si128((__m128i *)(d->qcoeff), x0);
90 _mm_store_si128((__m128i *)(d->qcoeff + 8), x1);
H A Dvp8_enc_stubs_mmx.c35 short *qcoeff_ptr = d->qcoeff;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_block.h31 tran_low_t *qcoeff; member in struct:macroblock_plane
H A Dvp9_context_tree.c34 CHECK_MEM_ERROR(cm, ctx->qcoeff[i][k],
35 vpx_memalign(16, num_pix * sizeof(*ctx->qcoeff[i][k])));
41 ctx->qcoeff_pbuf[i][k] = ctx->qcoeff[i][k];
56 vpx_free(ctx->qcoeff[i][k]);
57 ctx->qcoeff[i][k] = 0;

Completed in 6903 milliseconds

123