Searched refs:srcsize (Results 1 – 5 of 5) sorted by relevance
/third_party/lz4/lib/ |
D | lz4file.c | 135 size_t srcsize = lz4fRead->srcBufSize - lz4fRead->srcBufNext; in LZ4F_read() local 139 if (srcsize == 0) { in LZ4F_read() 143 srcsize = lz4fRead->srcBufSize; in LZ4F_read() 157 &srcsize, in LZ4F_read() 163 lz4fRead->srcBufNext += srcsize; in LZ4F_read()
|
/third_party/ffmpeg/libavcodec/ |
D | faxcompr.c | 384 static int find_group3_syncmarker(GetBitContext *gb, int srcsize) in find_group3_syncmarker() argument 387 srcsize -= get_bits_count(gb); in find_group3_syncmarker() 388 while (srcsize-- > 0) { in find_group3_syncmarker() 396 int ff_ccitt_unpack(AVCodecContext *avctx, const uint8_t *src, int srcsize, in ff_ccitt_unpack() argument 416 if ((ret = init_get_bits8(&gb, src, srcsize)) < 0) in ff_ccitt_unpack() 431 find_group3_syncmarker(&gb, srcsize * 8) < 0) in ff_ccitt_unpack()
|
D | faxcompr.h | 42 const uint8_t *src, int srcsize,
|
D | dxa.c | 54 int stride, uint8_t *src, int srcsize, uint8_t *ref) in decode_13() argument 57 uint8_t *src_end = src + srcsize; in decode_13() 62 …if (12ULL + ((avctx->width * avctx->height) >> 4) + AV_RB32(src + 0) + AV_RB32(src + 4) > srcsize) in decode_13()
|
/third_party/python/Lib/test/ |
D | test_buffer.py | 2701 srcsize = struct.calcsize(fmt) 2708 ndim=1, shape=[31*srcsize], strides=(1,), 2715 itemsize=srcsize, fmt=fmt, readonly=False, 2716 ndim=1, shape=[31], strides=(srcsize,), 2720 srcsize = struct.calcsize('I')
|