/external/libvpx/libvpx/vp8/encoder/x86/ |
vp8_enc_stubs_mmx.c | 25 short *qcoeff_ptr, short *dequant_ptr, 35 short *qcoeff_ptr = d->qcoeff; local 42 qcoeff_ptr,
|
quantize_mmx.asm | 15 ; short *qcoeff_ptr,short *dequant_ptr, 58 mov rdi, arg(2) ;qcoeff_ptr 98 mov rdi, arg(2) ;qcoeff_ptr 139 mov rdi, arg(2) ;qcoeff_ptr 180 mov rdi, arg(2) ;qcoeff_ptr 196 mov rsi, arg(2) ;qcoeff_ptr
|
quantize_sse2.c | 30 qcoeff_ptr[z] = y[z]; \ 40 short *qcoeff_ptr = d->qcoeff; local 59 vpx_memset(qcoeff_ptr, 0, 32);
|
/external/libvpx/libvpx/vp8/decoder/ |
detokenize.c | 180 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/ |
tokenize.c | 115 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 218 qcoeff_ptr = b->qcoeff; 240 v = qcoeff_ptr[c]; 257 v = qcoeff_ptr[rc]; 291 qcoeff_ptr = b->qcoeff; 311 v = qcoeff_ptr[0] [all...] |
quantize.c | 32 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 = d->qcoeff 228 short *qcoeff_ptr = d->qcoeff; local [all...] |
encodemb.c | 233 short *qcoeff_ptr; local 270 qcoeff_ptr = d->qcoeff; 297 x = qcoeff_ptr[rc]; 458 qcoeff_ptr[rc] = x;
|
rdopt.c | 527 short *qcoeff_ptr = b->qcoeff; local 531 # define QC( I) ( qcoeff_ptr [vp8_default_zig_zag1d[I]] ) [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_quantize.c | 29 int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, 39 vpx_memset(qcoeff_ptr, 0, count * sizeof(int16_t)); 66 qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign; 67 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0]; 82 int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, 92 vpx_memset(qcoeff_ptr, 0, n_coeffs*sizeof(int16_t)); 130 qcoeff_ptr[rc] = x; // write to destination
|
vp9_tokenize.c | 111 const int16_t *qcoeff_ptr = BLOCK_OFFSET(pd->qcoeff, block); local 137 v = qcoeff_ptr[rc];
|
vp9_encodemb.c | 125 int16_t *qcoeff_ptr; local 144 qcoeff_ptr = BLOCK_OFFSET(pd->qcoeff, block); 163 qcoeff_ptr[scan[i]]].token]; 169 x = qcoeff_ptr[rc]; 299 vpx_memset(qcoeff_ptr, 0, sizeof(*qcoeff_ptr) * (16 << (tx_size * 2))); 307 qcoeff_ptr[rc] = x;
|
vp9_rdopt.c | 499 const int16_t *const qcoeff_ptr = BLOCK_OFFSET(pd->qcoeff, block); local 520 int v = qcoeff_ptr[0]; 531 v = qcoeff_ptr[rc]; [all...] |