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

  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/
internal_alerts.py 29 uncompressed = super(InternalAlertsHandler,
31 super(InternalAlertsHandler, self).send_json_data(uncompressed)
alerts.py 48 uncompressed = zlib.decompress(compressed)
49 self.send_json_data(uncompressed)
68 uncompressed = self.generate_json_dump(alerts)
70 compressed = zlib.compress(uncompressed, compression_level)
  /build/tools/
dump-package-stats 34 Dumps a summary of the compressed and uncompressed sizes of various
45 These fields are presented as <uncompressed bytes>/<compressed bytes>:
126 uncompressed = $1;
130 dex_uncompressed += uncompressed;
133 total_uncompressed += uncompressed;
  /external/chromium_org/third_party/skia/tests/
FlateTest.cpp 67 SkDynamicMemoryWStream uncompressed; local
68 bool inflateSuccess = SkFlate::Inflate(testStream, &uncompressed);
83 // Check that the uncompressed data matches the source data.
84 SkAutoDataUnref uncompressedData(uncompressed.copyToData());
  /external/lzma/xz-embedded/
xz_dec_stream.c 22 vli_type uncompressed; member in struct:xz_dec_hash
59 /* Type of the integrity check calculated from uncompressed data */
80 * Value stored in the Uncompressed Size field, or
81 * VLI_UNKNOWN if Uncompressed Size is not present.
83 vli_type uncompressed; member in struct:xz_dec::__anon6317
94 /* Observed uncompressed size of the current Block */
95 vli_type uncompressed; member in struct:xz_dec::__anon6318
219 * the observed compressed and uncompressed sizes of the Block so that
244 s->block.uncompressed += b->out_pos - s->out_start;
251 || s->block.uncompressed
    [all...]
xz_dec_lzma2.c 56 * would read beyond the beginning of the uncompressed stream.
73 * read beyond the beginning of the uncompressed stream.
231 /* Uncompressed size of LZMA chunk (2 MiB at maximum) */
232 uint32_t uncompressed; member in struct:lzma2_dec
235 * Compressed size of LZMA chunk or compressed/uncompressed
236 * size of uncompressed chunk (64 KiB at maximum)
242 * the first chunk (LZMA or uncompressed).
373 /* Copy uncompressed data as is from input to dictionary and output buffers. */
929 * decoding or copying of uncompressed chunks to other functions.
945 * an uncompressed chun
    [all...]
  /external/chromium_org/media/cast/logging/
log_deserializer.cc 24 // Use 60MB of temp buffer to hold uncompressed data if |compress| is true.
186 char* uncompressed,
192 stream.next_out = reinterpret_cast<uint8*>(uncompressed);
232 scoped_ptr<char[]> uncompressed(new char[kMaxUncompressedBytes]);
237 uncompressed.get(),
242 uncompressed.get(), uncompressed_bytes, audio_log, video_log);
  /external/chromium_org/net/websockets/
websocket_inflater_test.cc 211 scoped_refptr<IOBufferWithSize> uncompressed = local
213 ASSERT_TRUE(uncompressed.get());
215 uncompressed->data(),
216 uncompressed->data() + uncompressed->size());
  /external/chromium_org/sync/internal_api/public/base/
unique_position.h 126 // Expects an uncompressed prefix and suffix as input. The |suffix| parameter
127 // must be a suffix of |uncompressed|. For internal use only.
128 UniquePosition(const std::string& uncompressed, const std::string& suffix);
unique_position.cc 76 << "Uncompressed length " << uncompressed_len
377 const std::string& uncompressed,
379 : compressed_(Compress(uncompressed)),
380 is_valid_(IsValidBytes(uncompressed)) {
381 DCHECK(uncompressed.rfind(suffix) + kSuffixLength == uncompressed.length());
  /external/chromium_org/extensions/browser/api/cast_channel/
logger_unittest.cc 71 std::string uncompressed(20000, 0);
72 if (!Uncompress(output.get(), length, &uncompressed))
76 if (!log->ParseFromString(uncompressed))
  /external/chromium_org/net/quic/crypto/
cert_compressor.cc 570 StringPiece uncompressed; local
614 uncompressed = StringPiece(reinterpret_cast<char*>(uncompressed_data.get()),
621 if (uncompressed.size() < sizeof(uint32)) {
625 memcpy(&cert_len, uncompressed.data(), sizeof(cert_len));
626 uncompressed.remove_prefix(sizeof(uint32));
627 if (uncompressed.size() < cert_len) {
630 (*out_certs)[i] = uncompressed.substr(0, cert_len).as_string();
631 uncompressed.remove_prefix(cert_len);
639 if (!uncompressed.empty()) {
  /external/fonttools/Lib/fontTools/ttLib/
sfnt.py 148 entry.uncompressed = True
314 totalSfntSize: L # uncompressed size
319 metaOrigLength: L # length of uncompressed metadata
341 self.uncompressed = False # if True, always embed entry raw
403 if not self.uncompressed:
405 if self.uncompressed or len(compressedData) >= self.origLength:
406 # Encode uncompressed
  /external/chromium_org/third_party/leveldatabase/src/db/
db_bench.cc 86 // Number of bytes to use as a cache of uncompressed data.
674 char* uncompressed = new char[input.size()]; local
677 uncompressed);
681 delete[] uncompressed;
  /external/chromium_org/chrome/installer/mac/
pkg-dmg 98 - UDRO - uncompressed, read-only; extension I<.dmg>
99 - UDRW - uncompressed, read-write; extension I<.dmg>
100 - UDSP - uncompressed, read-write, sparse; extension I<.sparseimage>
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
MESA_texture_signed_rgba.spec 45 red_green signed formats but no uncompressed ones, which might
  /external/mesa3d/docs/
MESA_texture_signed_rgba.spec 45 red_green signed formats but no uncompressed ones, which might
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]
  /external/chromium_org/net/spdy/
spdy_framer_test.cc 1478 scoped_ptr<SpdyFrame> uncompressed; local
    [all...]

Completed in 648 milliseconds