Home
last modified time | relevance | path

Searched refs:size_in (Results 1 – 6 of 6) sorted by relevance

/third_party/elfutils/libelf/
Delf_compress.c210 __libelf_decompress (void *buf_in, size_t size_in, size_t size_out) in __libelf_decompress() argument
215 if (unlikely (size_out / 1032 > size_in)) in __libelf_decompress()
235 .avail_in = size_in, in __libelf_decompress()
296 size_t size_in = data->d_size - hsize; in __libelf_decompress_elf() local
298 void *buf_out = __libelf_decompress (buf_in, size_in, chdr.ch_size); in __libelf_decompress_elf()
Delf_compress_gnu.c179 size_t size_in = data->d_size - hsize; in elf_compress_gnu() local
181 void *buf_out = __libelf_decompress (buf_in, size_in, size); in elf_compress_gnu()
DlibelfP.h580 extern void * __libelf_decompress (void *buf_in, size_t size_in,
/third_party/lz4/examples/
DframeCompress.c53 unsigned long long size_in; member
144 result.size_in = count_in; in compress_file_internal()
445 …(size_t)ret.size_in, (size_t)ret.size_out, /* might overflow is size_t is 32 bits and size_{in,ou… in main()
446 (double)ret.size_out / ret.size_in * 100); in main()
/third_party/lwip/src/core/
Dmem.c831 mem_malloc(mem_size_t size_in) in mem_malloc() argument
840 if (size_in == 0) { in mem_malloc()
846 size = (mem_size_t)LWIP_MEM_ALIGN_SIZE(size_in); in mem_malloc()
854 if ((size > MEM_SIZE_ALIGNED) || (size < size_in)) { in mem_malloc()
961 mem_overflow_init_element(mem, size_in); in mem_malloc()
/third_party/ffmpeg/libavcodec/
Dpngdec.c499 static uint8_t *iso88591_to_utf8(const uint8_t *in, size_t size_in) in iso88591_to_utf8() argument
504 for (i = 0; i < size_in; i++) in iso88591_to_utf8()
506 if (size_in == SIZE_MAX || extra > SIZE_MAX - size_in - 1) in iso88591_to_utf8()
508 q = out = av_malloc(size_in + extra + 1); in iso88591_to_utf8()
511 for (i = 0; i < size_in; i++) { in iso88591_to_utf8()