Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodemb.c110 const int16_t *const coeff = BLOCK_OFFSET(mb->plane[plane].coeff, block); in optimize_b()
111 int16_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in optimize_b()
112 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in optimize_b()
310 int16_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant_fp()
311 int16_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in vp9_xform_quant_fp()
312 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in vp9_xform_quant_fp()
360 int16_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant_dc()
361 int16_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in vp9_xform_quant_dc()
362 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in vp9_xform_quant_dc()
408 int16_t *const coeff = BLOCK_OFFSET(p->coeff, block); in vp9_xform_quant()
[all …]
Dvp9_quantize.c264 vp9_quantize_b(BLOCK_OFFSET(p->coeff, block), in vp9_regular_quantize_b_4x4()
267 BLOCK_OFFSET(p->qcoeff, block), in vp9_regular_quantize_b_4x4()
268 BLOCK_OFFSET(pd->dqcoeff, block), in vp9_regular_quantize_b_4x4()
Dvp9_rdopt.c265 const int16_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); in cost_coeffs()
335 int16_t *const coeff = BLOCK_OFFSET(p->coeff, block); in dist_block()
336 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in dist_block()
382 int16_t *const coeff = BLOCK_OFFSET(x->plane[plane].coeff, block); in block_rd_txfm()
383 int16_t *const dqcoeff = BLOCK_OFFSET(xd->plane[plane].dqcoeff, block); in block_rd_txfm()
681 int16_t *const coeff = BLOCK_OFFSET(x->plane[0].coeff, block); in rd_pick_intra4x4block()
699 vp9_iwht4x4_add(BLOCK_OFFSET(pd->dqcoeff, block), dst, dst_stride, in rd_pick_intra4x4block()
710 distortion += vp9_block_error(coeff, BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block()
714 vp9_iht4x4_add(tx_type, BLOCK_OFFSET(pd->dqcoeff, block), in rd_pick_intra4x4block()
1131 coeff = BLOCK_OFFSET(p->coeff, k); in encode_inter_mb_segment()
[all …]
Dvp9_tokenize.c215 const int16_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); in tokenize_b()
/external/squashfs-tools/squashfs-tools/
Dxattr.c297 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()
Dmksquashfs.h133 #define BLOCK_OFFSET 2 macro
Dmksquashfs.c463 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/decoder/
Dvp9_detokenize.c186 BLOCK_OFFSET(pd->dqcoeff, block), tx_size, in vp9_decode_block_tokens()
Dvp9_decodeframe.c198 int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); in inverse_transform_block()
/external/libvpx/libvpx/vp9/common/
Dvp9_blockd.h190 #define BLOCK_OFFSET(x, i) ((x) + (i) * 16) macro