HomeSort by relevance Sort by last modified time
    Searched refs:uncompressed_length (Results 1 - 11 of 11) sorted by null

  /system/core/libziparchive/
zip_archive_test.cc 116 ASSERT_EQ(static_cast<uint32_t>(17), data.uncompressed_length);
133 const uint32_t a_size = data.uncompressed_length;
142 const uint32_t b_size = data.uncompressed_length;
188 ASSERT_EQ(static_cast<uint32_t>(0), entry.uncompressed_length);
245 std::vector<uint8_t> uncompressed_data(entry.uncompressed_length);
246 ASSERT_EQ(static_cast<ssize_t>(entry.uncompressed_length),
248 read(fd, &uncompressed_data[0], entry.uncompressed_length)));
zip_archive.cc 729 entry->uncompressed_length = descriptor->uncompressed_size;
793 data->uncompressed_length = cdr->uncompressed_size;
825 || data->uncompressed_length != lfh->uncompressed_size
829 data->compressed_length, data->uncompressed_length, data->crc32,
881 (off64_t)(data_offset + data->uncompressed_length) > cd_offset) {
883 (int64_t)data_offset, data->uncompressed_length, (int64_t)cd_offset);
1012 const uint32_t uncompressed_length = entry->uncompressed_length; local
    [all...]
  /system/core/include/ziparchive/
zip_archive.h 70 uint32_t uncompressed_length; member in struct:ZipEntry
156 * |entry->uncompressed_length| bytes will be written to the file at
  /external/chromium_org/third_party/ots/src/
ots.cc 32 uint32_t uncompressed_length; member in struct:__anon18627::OpenTypeTable
226 table.uncompressed_length = table.length;
328 !file.ReadU32(&table.uncompressed_length) ||
333 total_sfnt_size += ots::Round4(table.uncompressed_length);
455 if (tables[i].uncompressed_length < tables[i].length) {
458 if (tables[i].uncompressed_length > tables[i].length) {
462 if (tables[i].uncompressed_length > 30 * 1024 * 1024) {
465 if (uncompressed_sum + tables[i].uncompressed_length < uncompressed_sum) {
469 uncompressed_sum += tables[i].uncompressed_length;
529 if (it->second.uncompressed_length != it->second.length)
    [all...]
woff2.cc 780 uLongf uncompressed_length = dst_size; local
781 int r = uncompress(reinterpret_cast<Bytef *>(dst_buf), &uncompressed_length,
783 if (r != Z_OK || uncompressed_length != dst_size) {
    [all...]
  /art/runtime/
zip_archive.cc 32 return zip_entry_->uncompressed_length;
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 114 *pUncompLen = ze.uncompressed_length;
201 actualLen = ze.uncompressed_length;
  /libcore/luni/src/main/native/
java_util_jar_StrictJarFile.cpp 47 static_cast<jlong>(entry.uncompressed_length),
  /external/chromium_org/sync/internal_api/public/base/
unique_position.cc 61 uLongf uncompressed_len = proto.uncompressed_length();
74 if (uncompressed_len != proto.uncompressed_length()) {
77 << " did not match specified length " << proto.uncompressed_length();
  /external/libpng/
pngrutil.c 2539 png_alloc_size_t uncompressed_length = PNG_SIZE_MAX; local
2650 png_alloc_size_t uncompressed_length = 0; local
    [all...]
  /external/chromium_org/net/spdy/
spdy_framer.cc 2926 const size_t uncompressed_length = local
    [all...]

Completed in 395 milliseconds