HomeSort by relevance Sort by last modified time
    Searched refs:compressed_data (Results 1 - 13 of 13) 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);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder.h 140 int16 compressed_data[],
  /external/chromium_org/chrome/test/chromedriver/
util.cc 250 if (!stream.ReadString(&zip->compressed_data, compressed_size)) {
267 if (compressed_size != zip->compressed_data.length()) {
277 if (!stream.ReadString(&zip->compressed_data, compressed_size)) {
300 stream.WriteUInt32(compressed_data.length());
306 stream.WriteString(compressed_data);
318 stream.WriteUInt32(compressed_data.length());
357 std::string compressed_data; member in struct:__anon10529::ZipEntry
  /external/chromium_org/v8/src/
mksnapshot.cc 105 i::List<char> compressed_data; local
109 compressed_data.AddAll(*compressor_->output());
110 data_to_be_written = &compressed_data;
240 const char* compressed_data,
248 const_cast<char*>(compressed_data),
api.cc 246 StartupData* compressed_data = local
248 V8::GetCompressedStartupData(compressed_data);
251 i::NewArray<char>(compressed_data[i].raw_size);
252 if (compressed_data[i].compressed_size != 0) {
254 &compressed_data[i].raw_size,
255 compressed_data[i].data,
256 compressed_data[i].compressed_size);
259 ASSERT_EQ(0, compressed_data[i].raw_size);
261 compressed_data[i].data = decompressed;
263 V8::SetDecompressedStartupData(compressed_data);
    [all...]
d8.cc 799 const char* compressed_data,
807 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 200 milliseconds