Searched defs:uncompressed_length (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/ots/src/
H A Dots.cc32 uint32_t uncompressed_length; member in struct:__anon14752::OpenTypeTable
230 table.uncompressed_length = table.length;
332 !file.ReadU32(&table.uncompressed_length) ||
337 total_sfnt_size += ots::Round4(table.uncompressed_length);
459 if (tables[i].uncompressed_length < tables[i].length) {
462 if (tables[i].uncompressed_length > tables[i].length) {
466 if (tables[i].uncompressed_length > 30 * 1024 * 1024) {
469 if (uncompressed_sum + tables[i].uncompressed_length < uncompressed_sum) {
473 uncompressed_sum += tables[i].uncompressed_length;
533 if (it->second.uncompressed_length !
[all...]
H A Dwoff2.cc780 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) {
/external/libpng/
H A Dpngrutil.c2539 png_alloc_size_t uncompressed_length = PNG_SIZE_MAX; local
2546 &uncompressed_length, 1/*terminate*/) == Z_STREAM_END)
2555 buffer[uncompressed_length+(keyword_length+2)] = 0;
2560 text.text_length = uncompressed_length;
2650 png_alloc_size_t uncompressed_length = 0; local
2675 uncompressed_length = length - prefix_length;
2679 uncompressed_length = PNG_SIZE_MAX;
2686 &uncompressed_length, 1/*terminate*/) == Z_STREAM_END)
2700 buffer[uncompressed_length+prefix_length] = 0;
2713 text.itxt_length = uncompressed_length;
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_framer.cc2911 const size_t uncompressed_length = local
2914 return uncompressed_length;
2919 return 2 * deflateBound(compressor, uncompressed_length);

Completed in 4305 milliseconds