Searched refs:uncompressed_data_size (Results 1 – 1 of 1) sorted by relevance
511 bool Inflate(size_t uncompressed_data_size) { in Inflate() argument515 SafeBuffer uncompressed_buffer(uncompressed_data_size); in Inflate()516 ArrayRef<uint8_t> out_buffer(uncompressed_buffer.Get(), uncompressed_data_size); in Inflate()1832 uint32_t uncompressed_data_size = sizeof(FileHeader) + section_count * sizeof(FileSectionInfo); in LoadInternal() local1833 if (uncompressed_data_size > GetSizeErrorThresholdBytes()) { in LoadInternal()1835 << " bytes. It has " << uncompressed_data_size << " bytes."; in LoadInternal()1850 if (UNLIKELY(mem_size > std::numeric_limits<uint32_t>::max() - uncompressed_data_size)) { in LoadInternal()1854 uncompressed_data_size += mem_size; in LoadInternal()1859 if (uncompressed_data_size > GetSizeErrorThresholdBytes()) { in LoadInternal()1862 << " bytes. It has " << uncompressed_data_size << " bytes."; in LoadInternal()[all …]