Searched refs:cb_size (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | escape124.c | 245 unsigned cb_depth, cb_size; in escape124_decode_frame() local 249 cb_size = get_bits(&gb, 20); in escape124_decode_frame() 250 if (!cb_size) { in escape124_decode_frame() 254 cb_depth = av_log2(cb_size - 1) + 1; in escape124_decode_frame() 260 cb_size = 1 << cb_depth; in escape124_decode_frame() 265 cb_size = s->num_superblocks << cb_depth; in escape124_decode_frame() 274 if (cb_size >= INT_MAX / 34 || get_bits_left(&gb) < (int)cb_size * 34) in escape124_decode_frame() 277 if (cb_size >= INT_MAX / sizeof(MacroBlock)) in escape124_decode_frame() 279 s->codebooks[i] = unpack_codebook(&gb, cb_depth, cb_size); in escape124_decode_frame()
|
D | hevcdec.c | 1306 int cb_size = 1 << log2_cb_size; in set_deblocking_bypass() local 1310 int x_end = FFMIN(x0 + cb_size, s->ps.sps->width); in set_deblocking_bypass() 1311 int y_end = FFMIN(y0 + cb_size, s->ps.sps->height); in set_deblocking_bypass() 1446 int cb_size = 1 << log2_cb_size; in hls_pcm_sample() local 1454 int length = cb_size * cb_size * s->ps.sps->pcm.bit_depth + in hls_pcm_sample() 1455 (((cb_size >> s->ps.sps->hshift[1]) * (cb_size >> s->ps.sps->vshift[1])) + in hls_pcm_sample() 1456 ((cb_size >> s->ps.sps->hshift[2]) * (cb_size >> s->ps.sps->vshift[2]))) * in hls_pcm_sample() 1468 s->hevcdsp.put_pcm(dst0, stride0, cb_size, cb_size, &gb, s->ps.sps->pcm.bit_depth); in hls_pcm_sample() 1471 cb_size >> s->ps.sps->hshift[1], in hls_pcm_sample() 1472 cb_size >> s->ps.sps->vshift[1], in hls_pcm_sample() [all …]
|
/third_party/cmsis/CMSIS/RTOS2/Include/ |
D | cmsis_os2.h | 291 uint32_t cb_size; ///< size of provided memory for control block member 304 uint32_t cb_size; ///< size of provided memory for control block member 312 uint32_t cb_size; ///< size of provided memory for control block member 320 uint32_t cb_size; ///< size of provided memory for control block member 328 uint32_t cb_size; ///< size of provided memory for control block member 336 uint32_t cb_size; ///< size of provided memory for control block member 346 uint32_t cb_size; ///< size of provided memory for control block member
|
/third_party/ntfs-3g/libntfs-3g/ |
D | compress.c | 465 u8 *const cb_start, const u32 cb_size) in ntfs_decompress() argument 471 u8 *cb_end = cb_start + cb_size; /* End of cb. */ in ntfs_decompress() 483 ntfs_log_trace("Entering, cb_size = 0x%x.\n", (unsigned)cb_size); in ntfs_decompress() 717 u32 cb_size; in ntfs_compressed_attr_pread() local 773 cb_size = na->compression_block_size; in ntfs_compressed_attr_pread() 774 cb_size_mask = cb_size - 1UL; in ntfs_compressed_attr_pread() 778 cb = (u8*)ntfs_malloc(cb_size); in ntfs_compressed_attr_pread() 783 dest = (u8*)ntfs_malloc(cb_size); in ntfs_compressed_attr_pread() 799 end_vcn = ((pos + count + cb_size - 1) & ~cb_size_mask) >> in ntfs_compressed_attr_pread() 804 cb_end = cb + cb_size; in ntfs_compressed_attr_pread() [all …]
|