Home
last modified time | relevance | path

Searched refs:BLOCK_OFFSET (Results 1 – 9 of 9) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodemb.c103 const tran_low_t *const coeff = BLOCK_OFFSET(mb->plane[plane].coeff, block); in vp9_optimize_b()
104 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in vp9_optimize_b()
105 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in vp9_optimize_b()
354 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant_fp()
355 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in vp9_xform_quant_fp()
356 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in vp9_xform_quant_fp()
428 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant_dc()
429 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in vp9_xform_quant_dc()
430 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in vp9_xform_quant_dc()
499 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant()
[all …]
Dvp9_quantize.c170 vpx_highbd_quantize_b(BLOCK_OFFSET(p->coeff, block), 16, x->skip_block, in vp9_regular_quantize_b_4x4()
172 BLOCK_OFFSET(p->qcoeff, block), in vp9_regular_quantize_b_4x4()
173 BLOCK_OFFSET(pd->dqcoeff, block), pd->dequant, in vp9_regular_quantize_b_4x4()
178 vpx_quantize_b(BLOCK_OFFSET(p->coeff, block), 16, x->skip_block, p->zbin, in vp9_regular_quantize_b_4x4()
180 BLOCK_OFFSET(p->qcoeff, block), in vp9_regular_quantize_b_4x4()
181 BLOCK_OFFSET(pd->dqcoeff, block), pd->dequant, &p->eobs[block], in vp9_regular_quantize_b_4x4()
Dvp9_rdopt.c361 const tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in cost_coeffs()
549 const tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in dist_block()
550 const tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in dist_block()
584 const tran_low_t *dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in dist_block()
714 tran_low_t *const coeff = BLOCK_OFFSET(x->plane[plane].coeff, block); in block_rd_txfm()
715 tran_low_t *const dqcoeff = BLOCK_OFFSET(xd->plane[plane].dqcoeff, block); in block_rd_txfm()
1010 tran_low_t *const coeff = BLOCK_OFFSET(x->plane[0].coeff, block); in rd_pick_intra4x4block()
1029 vp9_highbd_iwht4x4_add(BLOCK_OFFSET(pd->dqcoeff, block), dst16, in rd_pick_intra4x4block()
1045 coeff, BLOCK_OFFSET(pd->dqcoeff, block), 16, in rd_pick_intra4x4block()
1051 vp9_highbd_iht4x4_add(tx_type, BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block()
[all …]
Dvp9_tokenize.c365 const tran_low_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); in tokenize_b()
Dvp9_pickmode.c692 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in block_yrd()
693 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in block_yrd()
694 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in block_yrd()
742 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in block_yrd()
743 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in block_yrd()
744 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in block_yrd()
/external/squashfs-tools/squashfs-tools/
Dxattr.c332 c_byte = mangle(xattr_table + xattr_bytes + BLOCK_OFFSET, in get_xattr_space()
337 xattr_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in get_xattr_space()
514 c_byte = mangle(xattr_table + xattr_bytes + BLOCK_OFFSET, datap, in write_xattrs()
518 xattr_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in write_xattrs()
Dmksquashfs.h144 #define BLOCK_OFFSET 2 macro
Dmksquashfs.c498 c_byte = mangle(inode_table + inode_bytes + BLOCK_OFFSET, in get_inode()
503 inode_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in get_inode()
504 total_inode_bytes += SQUASHFS_METADATA_SIZE + BLOCK_OFFSET; in get_inode()
640 c_byte = mangle(inode_table + inode_bytes + BLOCK_OFFSET, datap, in write_inodes()
644 inode_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in write_inodes()
645 total_inode_bytes += avail_bytes + BLOCK_OFFSET; in write_inodes()
678 BLOCK_OFFSET, directoryp, avail_bytes, in write_directories()
685 BLOCK_OFFSET; in write_directories()
686 total_directory_bytes += avail_bytes + BLOCK_OFFSET; in write_directories()
1358 BLOCK_OFFSET, directory_data_cache, in write_dir()
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_blockd.h135 #define BLOCK_OFFSET(x, i) ((x) + (i)*16) macro