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

  /external/chromium_org/components/metrics/
compression_utils_unittest.cc 37 std::string compressed_data; local
38 EXPECT_TRUE(GzipCompress(data, &compressed_data));
42 EXPECT_EQ(golden_compressed_data, compressed_data);
46 std::string compressed_data(reinterpret_cast<const char*>(kCompressedData),
50 EXPECT_TRUE(GzipUncompress(compressed_data, &uncompressed_data));
67 std::string compressed_data; local
68 EXPECT_TRUE(GzipCompress(data, &compressed_data));
71 EXPECT_TRUE(GzipUncompress(compressed_data, &uncompressed_data));
compression_utils.cc 113 // Returns the uncompressed size from GZIP-compressed |compressed_data|.
114 uint32 GetUncompressedSize(const std::string& compressed_data) {
117 if (compressed_data.length() < sizeof(size))
119 memcpy(&size, &compressed_data[compressed_data.length() - sizeof(size)],
130 std::vector<Bytef> compressed_data(kGzipZlibHeaderDifferenceBytes +
133 uLongf compressed_size = static_cast<uLongf>(compressed_data.size());
134 if (GzipCompressHelper(&compressed_data.front(),
141 compressed_data.resize(compressed_size);
142 output->assign(compressed_data.begin(), compressed_data.end())
    [all...]
  /external/chromium_org/components/feedback/
feedback_util.h 38 const std::string& data, std::string* compressed_data);
feedback_common.h 24 std::string* compressed_data);
  /external/chromium_org/chrome/browser/android/thumbnail/
thumbnail_store.cc 355 skia::RefPtr<SkPixelRef> compressed_data,
369 compressed_data,
495 skia::RefPtr<SkPixelRef> compressed_data) {
509 compressed_data->lockPixels();
513 compressed_data->info().width(),
514 compressed_data->info().height());
522 compressed_data->info().width(),
523 compressed_data->info().height());
525 reinterpret_cast<char*>(compressed_data->pixels()),
530 compressed_data->unlockPixels()
576 skia::RefPtr<SkPixelRef> compressed_data; local
755 skia::RefPtr<SkPixelRef> compressed_data; local
    [all...]
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,
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder.h 140 int16 compressed_data[],
  /external/chromium_org/chrome/test/chromedriver/
util.cc 255 if (!stream.ReadString(&zip->compressed_data, compressed_size)) {
272 if (compressed_size != zip->compressed_data.length()) {
282 if (!stream.ReadString(&zip->compressed_data, compressed_size)) {
305 stream.WriteUInt32(compressed_data.length());
311 stream.WriteString(compressed_data);
323 stream.WriteUInt32(compressed_data.length());
362 std::string compressed_data; member in struct:__anon10605::ZipEntry
  /external/chromium_org/v8/src/
mksnapshot.cc 140 i::List<i::byte> compressed_data; local
144 compressed_data.AddAll(*compressor_->output());
145 data_to_be_written = &compressed_data;
273 const char* compressed_data,
281 const_cast<char*>(compressed_data),
api.cc 223 StartupData* compressed_data = local
225 V8::GetCompressedStartupData(compressed_data);
228 i::NewArray<char>(compressed_data[i].raw_size);
229 if (compressed_data[i].compressed_size != 0) {
231 &compressed_data[i].raw_size,
232 compressed_data[i].data,
233 compressed_data[i].compressed_size);
236 DCHECK_EQ(0, compressed_data[i].raw_size);
238 compressed_data[i].data = decompressed;
240 V8::SetDecompressedStartupData(compressed_data);
    [all...]
d8.cc 849 const char* compressed_data,
857 const_cast<char*>(compressed_data),
    [all...]
  /external/qemu/hw/core/
loader.c 514 uint8_t *compressed_data; local
518 compressed_data = data;
522 bytes = gunzip(data, max_bytes, compressed_data, hdr->ih_size);
523 g_free(compressed_data);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9anim.h 274 ID3DXBuffer **compressed_data) PURE;
300 STDMETHOD(GetCompressedData)(THIS_ ID3DXBuffer **compressed_data) PURE;
400 D3DXPLAYBACK_TYPE playback_type, ID3DXBuffer *compressed_data, UINT callback_key_count,
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 5073 ucvector compressed_data; local
    [all...]
  /external/chromium_org/v8/include/
v8.h     [all...]

Completed in 1379 milliseconds