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 | 369 const tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in cost_coeffs() 451 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in dist_block() 452 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in dist_block() 516 tran_low_t *const coeff = BLOCK_OFFSET(x->plane[plane].coeff, block); in block_rd_txfm() 517 tran_low_t *const dqcoeff = BLOCK_OFFSET(xd->plane[plane].dqcoeff, block); in block_rd_txfm() 824 tran_low_t *const coeff = BLOCK_OFFSET(x->plane[0].coeff, block); in rd_pick_intra4x4block() 842 vp9_highbd_iwht4x4_add(BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block() 858 coeff, BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block() 862 vp9_highbd_iht4x4_add(tx_type, BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block() 927 tran_low_t *const coeff = BLOCK_OFFSET(x->plane[0].coeff, block); in rd_pick_intra4x4block() [all …]
|
D | vp9_pickmode.c | 605 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in block_yrd() 606 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in block_yrd() 607 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in block_yrd() 668 tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); in block_yrd() 669 tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in block_yrd() 670 tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in block_yrd()
|
D | vp9_tokenize.c | 480 const tran_low_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); in tokenize_b()
|
/external/squashfs-tools/squashfs-tools/ |
D | xattr.c | 332 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()
|
D | mksquashfs.h | 144 #define BLOCK_OFFSET 2 macro
|
D | mksquashfs.c | 472 c_byte = mangle(inode_table + inode_bytes + BLOCK_OFFSET, in get_inode() 477 inode_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in get_inode() 478 total_inode_bytes += SQUASHFS_METADATA_SIZE + BLOCK_OFFSET; in get_inode() 614 c_byte = mangle(inode_table + inode_bytes + BLOCK_OFFSET, datap, in write_inodes() 618 inode_bytes += SQUASHFS_COMPRESSED_SIZE(c_byte) + BLOCK_OFFSET; in write_inodes() 619 total_inode_bytes += avail_bytes + BLOCK_OFFSET; in write_inodes() 652 BLOCK_OFFSET, directoryp, avail_bytes, in write_directories() 659 BLOCK_OFFSET; in write_directories() 660 total_directory_bytes += avail_bytes + BLOCK_OFFSET; in write_directories() 1314 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
|