/external/chromium_org/components/metrics/ |
D | compression_utils_unittest.cc | 37 std::string compressed_data; in TEST() local 38 EXPECT_TRUE(GzipCompress(data, &compressed_data)); in TEST() 42 EXPECT_EQ(golden_compressed_data, compressed_data); in TEST() 46 std::string compressed_data(reinterpret_cast<const char*>(kCompressedData), in TEST() 50 EXPECT_TRUE(GzipUncompress(compressed_data, &uncompressed_data)); in TEST() 67 std::string compressed_data; in TEST() local 68 EXPECT_TRUE(GzipCompress(data, &compressed_data)); in TEST() 71 EXPECT_TRUE(GzipUncompress(compressed_data, &uncompressed_data)); in TEST()
|
D | compression_utils.cc | 114 uint32 GetUncompressedSize(const std::string& compressed_data) { in GetUncompressedSize() argument 117 if (compressed_data.length() < sizeof(size)) in GetUncompressedSize() 119 memcpy(&size, &compressed_data[compressed_data.length() - sizeof(size)], in GetUncompressedSize() 130 std::vector<Bytef> compressed_data(kGzipZlibHeaderDifferenceBytes + in GzipCompress() local 133 uLongf compressed_size = static_cast<uLongf>(compressed_data.size()); in GzipCompress() 134 if (GzipCompressHelper(&compressed_data.front(), in GzipCompress() 141 compressed_data.resize(compressed_size); in GzipCompress() 142 output->assign(compressed_data.begin(), compressed_data.end()); in GzipCompress()
|
/external/chromium_org/chrome/browser/android/thumbnail/ |
D | thumbnail_store.cc | 355 skia::RefPtr<SkPixelRef> compressed_data, in WriteThumbnailIfNecessary() argument 369 compressed_data, in WriteThumbnailIfNecessary() 495 skia::RefPtr<SkPixelRef> compressed_data) { in WriteToFile() argument 509 compressed_data->lockPixels(); in WriteToFile() 513 compressed_data->info().width(), in WriteToFile() 514 compressed_data->info().height()); in WriteToFile() 522 compressed_data->info().width(), in WriteToFile() 523 compressed_data->info().height()); in WriteToFile() 525 reinterpret_cast<char*>(compressed_data->pixels()), in WriteToFile() 530 compressed_data->unlockPixels(); in WriteToFile() [all …]
|
D | thumbnail_store.h | 98 skia::RefPtr<SkPixelRef> compressed_data, 110 skia::RefPtr<SkPixelRef> compressed_data, 123 skia::RefPtr<SkPixelRef> compressed_data, 128 skia::RefPtr<SkPixelRef> compressed_data, 138 skia::RefPtr<SkPixelRef> compressed_data,
|
/external/chromium_org/chrome/test/chromedriver/ |
D | util.cc | 255 if (!stream.ReadString(&zip->compressed_data, compressed_size)) { in FromBytes() 272 if (compressed_size != zip->compressed_data.length()) { in FromBytes() 282 if (!stream.ReadString(&zip->compressed_data, compressed_size)) { in FromBytes() 305 stream.WriteUInt32(compressed_data.length()); in ToZip() 311 stream.WriteString(compressed_data); in ToZip() 323 stream.WriteUInt32(compressed_data.length()); in ToZip() 362 std::string compressed_data; member
|
/external/chromium_org/v8/src/ |
D | mksnapshot.cc | 140 i::List<i::byte> compressed_data; in WriteData() local 144 compressed_data.AddAll(*compressor_->output()); in WriteData() 145 data_to_be_written = &compressed_data; in WriteData() 273 const char* compressed_data, in DecompressData() argument 281 const_cast<char*>(compressed_data), in DecompressData()
|
D | api.cc | 223 StartupData* compressed_data = in Decompress() local 225 V8::GetCompressedStartupData(compressed_data); in Decompress() 228 i::NewArray<char>(compressed_data[i].raw_size); in Decompress() 229 if (compressed_data[i].compressed_size != 0) { in Decompress() 231 &compressed_data[i].raw_size, in Decompress() 232 compressed_data[i].data, in Decompress() 233 compressed_data[i].compressed_size); in Decompress() 236 DCHECK_EQ(0, compressed_data[i].raw_size); in Decompress() 238 compressed_data[i].data = decompressed; in Decompress() 240 V8::SetDecompressedStartupData(compressed_data); in Decompress() [all …]
|
D | d8.cc | 849 const char* compressed_data, in DecompressData() argument 857 const_cast<char*>(compressed_data), in DecompressData()
|
/external/chromium_org/components/feedback/ |
D | feedback_util.h | 38 const std::string& data, std::string* compressed_data);
|
D | feedback_common.h | 24 std::string* compressed_data);
|
/external/qemu/hw/core/ |
D | loader.c | 514 uint8_t *compressed_data; in load_uimage() local 518 compressed_data = data; in load_uimage() 522 bytes = gunzip(data, max_bytes, compressed_data, hdr->ih_size); in load_uimage() 523 g_free(compressed_data); in load_uimage()
|
/external/zopfli/src/zopflipng/lodepng/ |
D | lodepng.cpp | 5073 ucvector compressed_data; in addChunk_iTXt() local 5074 ucvector_init(&compressed_data); in addChunk_iTXt() 5075 error = zlib_compress(&compressed_data.data, &compressed_data.size, in addChunk_iTXt() 5079 for(i = 0; i < compressed_data.size; i++) ucvector_push_back(&data, compressed_data.data[i]); in addChunk_iTXt() 5081 ucvector_cleanup(&compressed_data); in addChunk_iTXt()
|
/external/chromium_org/v8/include/ |
D | v8.h | 4884 const char* compressed_data, 4987 static void GetCompressedStartupData(StartupData* compressed_data);
|