Searched refs:cb_size (Results 1 - 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A 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() [all...] |
H A D | hevcdec.c | 1307 int cb_size = 1 << log2_cb_size; in set_deblocking_bypass() local 1311 int x_end = FFMIN(x0 + cb_size, s->ps.sps->width); in set_deblocking_bypass() 1312 int y_end = FFMIN(y0 + cb_size, s->ps.sps->height); in set_deblocking_bypass() 1447 int cb_size = 1 << log2_cb_size; in hls_pcm_sample() local 1455 int length = cb_size * cb_size * s->ps.sps->pcm.bit_depth + in hls_pcm_sample() 1456 (((cb_size >> s->ps.sps->hshift[1]) * (cb_size >> s->ps.sps->vshift[1])) + in hls_pcm_sample() 1457 ((cb_size >> s->ps.sps->hshift[2]) * (cb_size >> in hls_pcm_sample() 2181 int cb_size = 1 << log2_cb_size; hls_coding_unit() local 2346 const int cb_size = 1 << log2_cb_size; hls_coding_quadtree() local [all...] |
/third_party/cmsis/CMSIS/RTOS2/Include/ |
H A 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/backends/backend/ |
H A D | snapscan-sources.c | 921 SANE_Int cb_size; /* size of the circular buffer */ member 941 if (ps->round_req == ps->cb_size) in RGBRouter_remaining() 942 remaining = TxSource_remaining(pself) - ps->cb_size + ps->cb_line_size; in RGBRouter_remaining() 964 DBG(DL_DATA_TRACE, "%s: remaining=%d, pself->remaining=%d, round_req=%d, cb_size=%d\n", in RGBRouter_get() 965 me, remaining, pself->remaining(pself), ps->round_req, ps->cb_size); in RGBRouter_get() 990 ps->cb_start = (ps->cb_start + ps->round_read)%ps->cb_size; in RGBRouter_get() 992 r = (ps->cb_start + ps->ch_offset[0])%ps->cb_size; in RGBRouter_get() 993 g = (ps->cb_start + ps->ch_offset[1])%ps->cb_size; in RGBRouter_get() 994 b = (ps->cb_start + ps->ch_offset[2])%ps->cb_size; in RGBRouter_get() 1092 pself->cb_size in RGBRouter_init() [all...] |
/third_party/ntfs-3g/libntfs-3g/ |
H A D | compress.c | 454 * @cb_size: size of compression block @cb_start in bytes 460 * and @cb_size is the size of @cb_start in bytes (8-64kiB). 465 u8 *const cb_start, const u32 cb_size) in ntfs_decompress() 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() 464 ntfs_decompress(u8 *dest, const u32 dest_size, u8 *const cb_start, const u32 cb_size) ntfs_decompress() argument [all...] |
Completed in 14 milliseconds