Searched refs:decomp_size (Results 1 – 10 of 10) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | lcldec.c | 63 unsigned int decomp_size; member 142 c->zstream.avail_out = c->decomp_size - offset; in zlib_decomp() 198 mthread_outlen = FFMIN(mthread_outlen, c->decomp_size); in decode_frame() 199 mszh_dlen = mszh_decomp(buf + 8, mthread_inlen, c->decomp_buf, c->decomp_size); in decode_frame() 206 … c->decomp_buf + mthread_outlen, c->decomp_size - mthread_outlen); in decode_frame() 213 len = c->decomp_size; in decode_frame() 215 mszh_dlen = mszh_decomp(buf, len, c->decomp_buf, c->decomp_size); in decode_frame() 216 if (c->decomp_size != mszh_dlen) { in decode_frame() 218 c->decomp_size, mszh_dlen); in decode_frame() 270 mthread_outlen = FFMIN(mthread_outlen, c->decomp_size); in decode_frame() [all …]
|
D | tscc.c | 54 unsigned int decomp_size; member 94 c->zstream.avail_out = c->decomp_size; in decode_frame() 111 c->decomp_size - c->zstream.avail_out); in decode_frame() 152 … c->decomp_size = (((avctx->width * c->bpp + 7) >> 3) + 3 * avctx->width + 2) * avctx->height + 2; in decode_init() 155 if (c->decomp_size) { in decode_init() 156 if (!(c->decomp_buf = av_malloc(c->decomp_size))) { in decode_init()
|
D | cscd.c | 36 unsigned int decomp_size; member 86 int outlen = c->decomp_size, inlen = buf_size - 2; in decode_frame() 95 unsigned long dlen = c->decomp_size; in decode_frame() 96 … if (uncompress(c->decomp_buf, &dlen, &buf[2], buf_size - 2) != Z_OK || dlen != c->decomp_size) { in decode_frame() 149 c->decomp_size = c->height * stride; in decode_init() 150 c->decomp_buf = av_malloc(c->decomp_size + AV_LZO_OUTPUT_PADDING); in decode_init()
|
D | mwsc.c | 34 unsigned int decomp_size; member 109 s->zstream.avail_out = s->decomp_size; in decode_frame() 148 s->decomp_size = size; in decode_init() 149 if (!(s->decomp_buf = av_malloc(s->decomp_size))) in decode_init() 174 s->decomp_size = 0; in decode_close()
|
D | mscc.c | 35 unsigned int decomp_size; member 176 s->zstream.avail_out = s->decomp_size; in decode_frame() 221 s->decomp_size = 2 * avctx->height * stride; in decode_init() 222 if (!(s->decomp_buf = av_malloc(s->decomp_size))) in decode_init() 246 s->decomp_size = 0; in decode_close()
|
D | nuv.c | 41 unsigned int decomp_size; member 138 av_fast_malloc(&c->decomp_buf, &c->decomp_size, in codec_reinit() 238 int outlen = c->decomp_size - FFMAX(AV_INPUT_BUFFER_PADDING_SIZE, AV_LZO_OUTPUT_PADDING); in decode_frame() 245 … buf_size = c->decomp_size - FFMAX(AV_INPUT_BUFFER_PADDING_SIZE, AV_LZO_OUTPUT_PADDING) - outlen; in decode_frame()
|
D | zmbv.c | 61 unsigned int decomp_size; member 531 if (c->decomp_size < len) { in decode_frame() 542 c->zstream.avail_out = c->decomp_size; in decode_frame() 622 c->decomp_size = (avctx->width + 255) * 4 * (avctx->height + 64); in decode_init() 625 c->decomp_buf = av_mallocz(c->decomp_size); in decode_init()
|
/third_party/python/Tools/unicode/ |
D | makeunicodedata.py | 175 decomp_size = 0 215 decomp_size = decomp_size + len(decomp) * 2 259 print(decomp_size, "bytes")
|
/third_party/miniz/ |
D | miniz_zip.c | 727 mz_uint64 comp_size, decomp_size, local_header_ofs; in mz_zip_reader_read_central_dir() local 738 decomp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS); in mz_zip_reader_read_central_dir() 745 (MZ_MAX(MZ_MAX(comp_size, decomp_size), local_header_ofs) == MZ_UINT32_MAX)) in mz_zip_reader_read_central_dir() 811 if ((comp_size != MZ_UINT32_MAX) && (decomp_size != MZ_UINT32_MAX)) in mz_zip_reader_read_central_dir() 813 …if (((!MZ_READ_LE32(p + MZ_ZIP_CDH_METHOD_OFS)) && (decomp_size != comp_size)) || (decomp_size && … in mz_zip_reader_read_central_dir()
|
/third_party/miniz/amalgamation/ |
D | miniz.c | 3674 mz_uint64 comp_size, decomp_size, local_header_ofs; in mz_zip_reader_read_central_dir() local 3685 decomp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS); in mz_zip_reader_read_central_dir() 3692 (MZ_MAX(MZ_MAX(comp_size, decomp_size), local_header_ofs) == MZ_UINT32_MAX)) in mz_zip_reader_read_central_dir() 3758 if ((comp_size != MZ_UINT32_MAX) && (decomp_size != MZ_UINT32_MAX)) in mz_zip_reader_read_central_dir() 3760 …if (((!MZ_READ_LE32(p + MZ_ZIP_CDH_METHOD_OFS)) && (decomp_size != comp_size)) || (decomp_size && … in mz_zip_reader_read_central_dir()
|