Searched refs:BLOCK_OFFSET (Results 1 – 9 of 9) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encodemb.c | 98 const tran_low_t *const coeff = BLOCK_OFFSET(mb->plane[plane].coeff, block); in optimize_b() 99 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in optimize_b() 100 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in optimize_b() 331 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant_fp() 332 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in vp9_xform_quant_fp() 333 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in vp9_xform_quant_fp() 420 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant_dc() 421 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in vp9_xform_quant_dc() 422 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in vp9_xform_quant_dc() 502 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant() [all …]
|
D | vp9_quantize.c | 202 vpx_highbd_quantize_b(BLOCK_OFFSET(p->coeff, block), in vp9_regular_quantize_b_4x4() 205 BLOCK_OFFSET(p->qcoeff, block), in vp9_regular_quantize_b_4x4() 206 BLOCK_OFFSET(pd->dqcoeff, block), in vp9_regular_quantize_b_4x4() 212 vpx_quantize_b(BLOCK_OFFSET(p->coeff, block), in vp9_regular_quantize_b_4x4() 215 BLOCK_OFFSET(p->qcoeff, block), in vp9_regular_quantize_b_4x4() 216 BLOCK_OFFSET(pd->dqcoeff, block), in vp9_regular_quantize_b_4x4()
|
D | vp9_rdopt.c | 347 const tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in cost_coeffs() 429 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in dist_block() 430 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in dist_block() 493 tran_low_t *const coeff = BLOCK_OFFSET(x->plane[plane].coeff, block); in block_rd_txfm() 494 tran_low_t *const dqcoeff = BLOCK_OFFSET(xd->plane[plane].dqcoeff, block); in block_rd_txfm() 795 tran_low_t *const coeff = BLOCK_OFFSET(x->plane[0].coeff, block); in rd_pick_intra4x4block() 813 vp9_highbd_iwht4x4_add(BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block() 829 coeff, BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block() 833 vp9_highbd_iht4x4_add(tx_type, BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block() 898 tran_low_t *const coeff = BLOCK_OFFSET(x->plane[0].coeff, block); in rd_pick_intra4x4block() [all …]
|
D | vp9_pickmode.c | 604 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in block_yrd() 605 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in block_yrd() 606 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in block_yrd() 667 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in block_yrd() 668 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in block_yrd() 669 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in block_yrd()
|
D | vp9_tokenize.c | 507 const tran_low_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); in tokenize_b()
|
/external/squashfs-tools/squashfs-tools/ |
D | xattr.c | 297 c_byte = mangle(xattr_table + xattr_bytes + BLOCK_OFFSET, in get_xattr_space() 302 xattr_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in get_xattr_space() 479 c_byte = mangle(xattr_table + xattr_bytes + BLOCK_OFFSET, datap, in write_xattrs() 483 xattr_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in write_xattrs()
|
D | mksquashfs.h | 133 #define BLOCK_OFFSET 2 macro
|
D | mksquashfs.c | 463 c_byte = mangle(inode_table + inode_bytes + BLOCK_OFFSET, in get_inode() 468 inode_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in get_inode() 469 total_inode_bytes += SQUASHFS_METADATA_SIZE + BLOCK_OFFSET; in get_inode() 605 c_byte = mangle(inode_table + inode_bytes + BLOCK_OFFSET, datap, in write_inodes() 609 inode_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in write_inodes() 610 total_inode_bytes += avail_bytes + BLOCK_OFFSET; in write_inodes() 643 BLOCK_OFFSET, directoryp, avail_bytes, in write_directories() 650 BLOCK_OFFSET; in write_directories() 651 total_directory_bytes += avail_bytes + BLOCK_OFFSET; in write_directories() 1253 BLOCK_OFFSET, directory_data_cache, in write_dir() [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_blockd.h | 140 #define BLOCK_OFFSET(x, i) ((x) + (i) * 16) macro
|