/third_party/ffmpeg/libavcodec/ |
H A D | hapenc.c | 103 + ctx->chunks[i-1].compressed_size; in hap_compress_frame() 107 chunk->compressed_size = ctx->max_snappy; in hap_compress_frame() 113 chunk_dst, &chunk->compressed_size); in hap_compress_frame() 120 if (chunk->compressed_size >= chunk->uncompressed_size) { in hap_compress_frame() 123 chunk->compressed_size, chunk->uncompressed_size); in hap_compress_frame() 126 chunk->compressed_size = chunk->uncompressed_size; in hap_compress_frame() 131 final_size += chunk->compressed_size; in hap_compress_frame() 186 bytestream2_put_le32(&pbc, ctx->chunks[i].compressed_size); in hap_write_frame_header()
|
H A D | hapdec.c | 78 ctx->chunks[i].compressed_size = bytestream2_get_le32(gbc); in hap_parse_decode_instructions() 108 if (ctx->chunks[i].compressed_size > UINT32_MAX - running_size) in hap_parse_decode_instructions() 110 running_size += ctx->chunks[i].compressed_size; in hap_parse_decode_instructions() 125 running_offset += ctx->chunks[i].compressed_size; in hap_can_use_tex_in_place() 161 ctx->chunks[0].compressed_size = ctx->texture_section_size; in hap_parse_frame_header() 191 if (chunk->compressed_offset + (uint64_t)chunk->compressed_size > bytestream2_get_bytes_left(gbc)) in hap_parse_frame_header() 203 chunk->compressed_size); in hap_parse_frame_header() 210 chunk->uncompressed_size = chunk->compressed_size; in hap_parse_frame_header() 231 bytestream2_init(&gbc, ctx->gbc.buffer + chunk->compressed_offset, chunk->compressed_size); in decompress_chunks_thread() 244 bytestream2_get_buffer(&gbc, dst, chunk->compressed_size); in decompress_chunks_thread() [all...] |
H A D | exrenc.c | 64 unsigned int compressed_size; member 239 av_fast_padded_malloc(&scanline->compressed_data, &scanline->compressed_size, max_compressed_size); in encode_scanline_rle() 272 FFSWAP(int, scanline->uncompressed_size, scanline->compressed_size); in encode_scanline_rle() 299 av_fast_padded_malloc(&scanline->compressed_data, &scanline->compressed_size, max_compressed_size); in encode_scanline_zip() 343 FFSWAP(int, scanline->uncompressed_size, scanline->compressed_size); in encode_scanline_zip()
|
H A D | exr.c | 199 static int zip_uncompress(EXRContext *s, const uint8_t *src, int compressed_size, in zip_uncompress() argument 204 if (uncompress(td->tmp, &dest_len, src, compressed_size) != Z_OK || in zip_uncompress() 217 int compressed_size, int uncompressed_size) in rle() 221 int ssize = compressed_size; in rle() 258 static int rle_uncompress(EXRContext *ctx, const uint8_t *src, int compressed_size, in rle_uncompress() argument 261 rle(td->tmp, src, compressed_size, uncompressed_size); in rle_uncompress() 678 int compressed_size, int uncompressed_size, in pxr24_uncompress() 698 if (uncompress(td->tmp, &dest_len, src, compressed_size) != Z_OK) { in pxr24_uncompress() 812 static int b44_uncompress(EXRContext *s, const uint8_t *src, int compressed_size, in b44_uncompress() argument 815 int stay_to_uncompress = compressed_size; in b44_uncompress() 216 rle(uint8_t *dst, const uint8_t *src, int compressed_size, int uncompressed_size) rle() argument 677 pxr24_uncompress(EXRContext *s, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td) pxr24_uncompress() argument 989 dwa_uncompress(EXRContext *s, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td) dwa_uncompress() argument [all...] |
H A D | hap.h | 56 size_t compressed_size; member
|
/third_party/libbpf/src/ |
H A D | zip.c | 92 __u32 compressed_size; member 120 __u32 compressed_size; member 262 __u32 compressed_size; in get_entry_at_offset() local 283 compressed_size = lfh->compressed_size; in get_entry_at_offset() 284 data = check_access(archive, offset, compressed_size); in get_entry_at_offset() 292 out->data_length = compressed_size; in get_entry_at_offset()
|
/third_party/mesa3d/src/util/ |
H A D | compress.c | 85 size_t compressed_size = 0; in util_compress_deflate() 109 compressed_size = strm.total_out; in util_compress_deflate() 114 return compressed_size; in util_compress_deflate()
|
H A D | disk_cache_os.c | 645 size_t compressed_size = in create_cache_item_header_and_blob() 648 if (compressed_size == 0) in create_cache_item_header_and_blob() 681 cf_data.crc32 = util_hash_crc32(compressed_data, compressed_size); in create_cache_item_header_and_blob() 688 if (!blob_write_bytes(cache_blob, compressed_data, compressed_size)) in create_cache_item_header_and_blob()
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfsfallocate.c | 554 na->compressed_size += size; in ntfs_merge_allocation() 555 if (na->compressed_size >= na->allocated_size) { in ntfs_merge_allocation() 557 if (na->compressed_size > na->allocated_size) { in ntfs_merge_allocation() 563 (long long)na->compressed_size, in ntfs_merge_allocation() 718 attr->compressed_size in ntfs_full_allocation() 719 = cpu_to_sle64(na->compressed_size); in ntfs_full_allocation() 726 = na->compressed_size; in ntfs_full_allocation()
|
/third_party/musl/porting/linux/user/ldso/ |
H A D | zip_archive.h | 75 uint32_t compressed_size; member 91 uint32_t compressed_size; member
|
/third_party/musl/ldso/linux/ |
H A D | zip_archive.h | 75 uint32_t compressed_size; member 91 uint32_t compressed_size; member
|
/third_party/node/deps/zlib/google/ |
H A D | compression_utils.cc | 18 size_t* compressed_size, in GzipCompress() 32 *compressed_size = static_cast<size_t>(compressed_size_long); in GzipCompress() 15 GzipCompress(base::span<const char> input, char* output_buffer, size_t output_buffer_size, size_t* compressed_size, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) GzipCompress() argument
|
H A D | compression_utils.h | 16 // and compression succeeds, |compressed_size| points to the compressed data 24 size_t* compressed_size,
|
/third_party/elfio/elfio/ |
H A D | elfio_section.hpp | 328 Elf_Xword compressed_size = 0; variable 330 data.get(), convertor, decompressed_size, compressed_size ); 331 stream.write( compressed_ptr.get(), compressed_size );
|
H A D | elfio_utils.hpp | 282 * @param compressed_size the size of the data buffer, in bytes 289 Elf_Xword compressed_size, 298 * @param compressed_size a reference to a variable where the compressed buffer size will be stored. 305 Elf_Xword& compressed_size ) const = 0;
|
/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | compression_utils.cc | 19 size_t* compressed_size, in GzipCompress() 33 *compressed_size = static_cast<size_t>(compressed_size_long); in GzipCompress() 16 GzipCompress(base::span<const char> input, char* output_buffer, size_t output_buffer_size, size_t* compressed_size, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) GzipCompress() argument
|
H A D | compression_utils.h | 16 // and compression succeeds, |compressed_size| points to the compressed data 24 size_t* compressed_size,
|
/third_party/skia/third_party/externals/zlib/google/ |
H A D | compression_utils.cc | 19 size_t* compressed_size, in GzipCompress() 33 *compressed_size = static_cast<size_t>(compressed_size_long); in GzipCompress() 16 GzipCompress(base::span<const char> input, char* output_buffer, size_t output_buffer_size, size_t* compressed_size, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) GzipCompress() argument
|
H A D | compression_utils.h | 16 // and compression succeeds, |compressed_size| points to the compressed data 24 size_t* compressed_size,
|
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
H A D | zip.c | 1517 ZPOS64_T compressed_size; in zipCloseFileInZipRaw64() local 1605 compressed_size = zi->ci.totalCompressedData; in zipCloseFileInZipRaw64() 1608 compressed_size += zi->ci.crypt_header_size; in zipCloseFileInZipRaw64() 1612 if(compressed_size >= 0xffffffff || uncompressed_size >= 0xffffffff || zi->ci.pos_local_header >= 0xffffffff) in zipCloseFileInZipRaw64() 1624 if(compressed_size >= 0xffffffff) in zipCloseFileInZipRaw64() 1627 zip64local_putValue_inmemory(zi->ci.central_header+20, compressed_size,4); /*compr size*/ in zipCloseFileInZipRaw64() 1643 if(compressed_size >= 0xffffffff) in zipCloseFileInZipRaw64() 1674 if(compressed_size >= 0xffffffff) in zipCloseFileInZipRaw64() 1676 zip64local_putValue_inmemory(p, compressed_size, 8); in zipCloseFileInZipRaw64() 1714 if(uncompressed_size >= 0xffffffff || compressed_size > in zipCloseFileInZipRaw64() [all...] |
H A D | unzip.h | 119 ZPOS64_T compressed_size; /* compressed size 8 bytes */ member 140 uLong compressed_size; /* compressed size 4 bytes */ member
|
/third_party/skia/third_party/externals/zlib/contrib/minizip/ |
H A D | zip.c | 1528 ZPOS64_T compressed_size; in zipCloseFileInZipRaw64() local 1616 compressed_size = zi->ci.totalCompressedData; in zipCloseFileInZipRaw64() 1619 compressed_size += zi->ci.crypt_header_size; in zipCloseFileInZipRaw64() 1623 if(compressed_size >= 0xffffffff || uncompressed_size >= 0xffffffff || zi->ci.pos_local_header >= 0xffffffff) in zipCloseFileInZipRaw64() 1635 if(compressed_size >= 0xffffffff) in zipCloseFileInZipRaw64() 1638 zip64local_putValue_inmemory(zi->ci.central_header+20, compressed_size,4); /*compr size*/ in zipCloseFileInZipRaw64() 1654 if(compressed_size >= 0xffffffff) in zipCloseFileInZipRaw64() 1685 if(compressed_size >= 0xffffffff) in zipCloseFileInZipRaw64() 1687 zip64local_putValue_inmemory(p, compressed_size, 8); in zipCloseFileInZipRaw64() 1725 if(uncompressed_size >= 0xffffffff || compressed_size > in zipCloseFileInZipRaw64() [all...] |
H A D | unzip.h | 119 ZPOS64_T compressed_size; /* compressed size 8 bytes */ member 140 uLong compressed_size; /* compressed size 4 bytes */ member
|
/third_party/zlib/contrib/minizip/ |
H A D | zip.c | 1791 ZPOS64_T compressed_size; in zipCloseFileInZipRaw64() local 1897 compressed_size = zi->ci.totalCompressedData; in zipCloseFileInZipRaw64() 1900 compressed_size += zi->ci.crypt_header_size; in zipCloseFileInZipRaw64() 1904 if(compressed_size >= 0xffffffff || uncompressed_size >= 0xffffffff || zi->ci.pos_local_header >= 0xffffffff) in zipCloseFileInZipRaw64() 1916 if(compressed_size >= 0xffffffff) in zipCloseFileInZipRaw64() 1922 zip64local_putValue_inmemory(zi->ci.central_header+20, compressed_size,4); /*compr size*/ in zipCloseFileInZipRaw64() 1947 if(compressed_size >= 0xffffffff) in zipCloseFileInZipRaw64() 1982 if(compressed_size >= 0xffffffff) in zipCloseFileInZipRaw64() 1984 zip64local_putValue_inmemory(p, compressed_size, 8); in zipCloseFileInZipRaw64() 2028 if(uncompressed_size >= 0xffffffff || compressed_size > in zipCloseFileInZipRaw64() [all...] |
H A D | unzip.h | 119 ZPOS64_T compressed_size; /* compressed size 8 bytes */ member 140 uLong compressed_size; /* compressed size 4 bytes */ member
|