Searched refs:uncompressed_data_size (Results 1 – 1 of 1) sorted by relevance
507 bool Inflate(size_t uncompressed_data_size) { in Inflate() argument511 SafeBuffer uncompressed_buffer(uncompressed_data_size); in Inflate()512 ArrayRef<uint8_t> out_buffer(uncompressed_buffer.Get(), uncompressed_data_size); in Inflate()1797 uint32_t uncompressed_data_size = sizeof(FileHeader) + section_count * sizeof(FileSectionInfo); in LoadInternal() local1798 if (uncompressed_data_size > GetSizeErrorThresholdBytes()) { in LoadInternal()1800 << " bytes. It has " << uncompressed_data_size << " bytes."; in LoadInternal()1815 if (UNLIKELY(mem_size > std::numeric_limits<uint32_t>::max() - uncompressed_data_size)) { in LoadInternal()1819 uncompressed_data_size += mem_size; in LoadInternal()1824 if (uncompressed_data_size > GetSizeErrorThresholdBytes()) { in LoadInternal()1827 << " bytes. It has " << uncompressed_data_size << " bytes."; in LoadInternal()[all …]