Searched defs:uncompressed (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/net/websockets/
H A Dwebsocket_inflater_test.cc211 scoped_refptr<IOBufferWithSize> uncompressed = local
213 ASSERT_TRUE(uncompressed.get());
215 uncompressed->data(),
216 uncompressed->data() + uncompressed->size());
/external/chromium_org/third_party/skia/tests/
H A DFlateTest.cpp67 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/skia/tests/
H A DFlateTest.cpp65 SkDynamicMemoryWStream uncompressed; local
66 status = SkFlate::Inflate(testStream, &uncompressed);
78 // Check that the uncompressed data matches the source data.
79 SkAutoDataUnref data2(uncompressed.copyToData());
80 REPORTER_ASSERT(reporter, testData.getLength() == uncompressed.getOffset());
/external/chromium_org/media/cast/logging/
H A Dlog_deserializer.cc24 // 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);
183 Uncompress(const char* data, int data_bytes, int max_uncompressed_bytes, char* uncompressed, int* uncompressed_bytes) argument
/external/chromium_org/net/quic/crypto/
H A Dcert_compressor.cc570 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/chromium_org/sync/internal_api/public/base/
H A Dunique_position.cc377 const std::string& uncompressed,
379 : compressed_(Compress(uncompressed)),
380 is_valid_(IsValidBytes(uncompressed)) {
381 DCHECK(uncompressed.rfind(suffix) + kSuffixLength == uncompressed.length());
376 UniquePosition( const std::string& uncompressed, const std::string& suffix) argument
/external/lzma/xz-embedded/
H A Dxz_dec_stream.c22 vli_type uncompressed; member in struct:xz_dec_hash
59 /* Type of the integrity check calculated from uncompressed data */
83 vli_type uncompressed; member in struct:xz_dec::__anon26765
94 /* Observed uncompressed size of the current Block */
95 vli_type uncompressed; member in struct:xz_dec::__anon26766
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
252 > s->block_header.uncompressed)
270 if (s->block_header.uncompressed !
[all...]
H A Dxz_dec_lzma2.c56 * would read beyond the beginning of the uncompressed stream.
73 * read beyond the beginning of the uncompressed stream.
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 chunk
961 * uncompressed siz
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_bench.cc86 // 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/net/spdy/
H A Dspdy_framer_test.cc1036 // Expect frames 3 to be the same as a uncompressed frame created
1478 scoped_ptr<SpdyFrame> uncompressed; local

Completed in 1378 milliseconds