Searched refs:uncompressed_data_size (Results 1 – 1 of 1) sorted by relevance
494 bool Inflate(size_t uncompressed_data_size) { in Inflate() argument498 SafeBuffer uncompressed_buffer(uncompressed_data_size); in Inflate()499 ArrayRef<uint8_t> out_buffer(uncompressed_buffer.Get(), uncompressed_data_size); in Inflate()1713 uint32_t uncompressed_data_size = sizeof(FileHeader) + section_count * sizeof(FileSectionInfo); in LoadInternal() local1714 if (uncompressed_data_size > GetSizeErrorThresholdBytes()) { in LoadInternal()1716 << " bytes. It has " << uncompressed_data_size << " bytes."; in LoadInternal()1731 if (UNLIKELY(mem_size > std::numeric_limits<uint32_t>::max() - uncompressed_data_size)) { in LoadInternal()1735 uncompressed_data_size += mem_size; in LoadInternal()1740 if (uncompressed_data_size > GetSizeErrorThresholdBytes()) { in LoadInternal()1743 << " bytes. It has " << uncompressed_data_size << " bytes."; in LoadInternal()[all …]