Home
last modified time | relevance | path

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

/aosp12/bootable/recovery/applypatch/
H A Dimgdiff.cpp797 size_t uncompressed_len = entry->uncompressed_length; in AddZipEntryToChunks() local
798 if (uncompressed_len > std::numeric_limits<size_t>::max()) { in AddZipEntryToChunks()
801 << uncompressed_len; in AddZipEntryToChunks()
804 std::vector<uint8_t> uncompressed_data(uncompressed_len); in AddZipEntryToChunks()
1316 size_t uncompressed_len = 0, raw_data_len = 0; in Initialize() local
1318 strm.avail_out = allocated - uncompressed_len; in Initialize()
1319 strm.next_out = uncompressed_data.data() + uncompressed_len; in Initialize()
1326 uncompressed_len = allocated - strm.avail_out; in Initialize()
1348 if (footer_size != uncompressed_len) { in Initialize()
1349 LOG(WARNING) << "footer size " << footer_size << " != " << uncompressed_len in Initialize()
[all …]