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

  /external/lz4/examples/
simple_buffer.c 45 char *compressed_data = malloc(max_dst_size); local
46 if (compressed_data == NULL)
47 run_screaming("Failed to allocate memory for *compressed_data.", 1);
48 // That's all the information and preparation LZ4 needs to compress *src into *compressed_data. Invoke LZ4_compress_default now
51 return_value = LZ4_compress_default(src, compressed_data, src_size, max_dst_size);
62 compressed_data = (char *)realloc(compressed_data, compressed_data_size);
63 if (compressed_data == NULL)
64 run_screaming("Failed to re-alloc memory for compressed_data. Sad :(", 1);
67 // Now that we've successfully compressed the information from *src to *compressed_data, let's do the opposite! We'll create
    [all...]
  /external/bsdiff/
brotli_compressor_unittest.cc 24 std::vector<uint8_t> compressed_data = brotli_compressor.GetCompressedData(); local
25 EXPECT_GT(compressed_data.size(), static_cast<size_t>(0));
30 EXPECT_TRUE(brotli_decompressor.SetInputData(compressed_data.data(),
31 compressed_data.size()));
46 std::vector<uint8_t> compressed_data = brotli_compressor.GetCompressedData(); local
50 EXPECT_TRUE(brotli_decompressor.SetInputData(compressed_data.data(),
51 compressed_data.size()));
  /toolchain/binutils/binutils-2.27/gold/
compressed_output.cc 36 // sets *COMPRESSED_DATA and *COMPRESSED_SIZE to appropriate values.
37 // It also writes a header before COMPRESSED_DATA: 4 bytes saying
45 unsigned char** compressed_data,
49 *compressed_data = new unsigned char[*compressed_size + header_size];
57 int rc = compress2(reinterpret_cast<Bytef*>(*compressed_data) + header_size,
69 delete[] *compressed_data;
70 *compressed_data = NULL;
75 // Decompress COMPRESSED_DATA of size COMPRESSED_SIZE, into a buffer
82 zlib_decompress(const unsigned char* compressed_data,
96 strm.next_in = const_cast<Bytef*>(compressed_data);
    [all...]
  /system/update_engine/payload_consumer/
bzip_extent_writer_unittest.cc 93 brillo::Blob compressed_data(std::begin(kCompressedData),
110 brillo::Blob original_compressed_data = compressed_data;
111 for (brillo::Blob::size_type i = 0; i < compressed_data.size();
113 size_t this_chunk_size = min(kChunkSize, compressed_data.size() - i);
114 EXPECT_TRUE(bzip_writer.Write(&compressed_data[i], this_chunk_size));
119 test_utils::ExpectVectorsEq(original_compressed_data, compressed_data);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder.h 140 int16 compressed_data[],
  /system/extras/simpleperf/
utils.cpp 205 bool XzDecompress(const std::string& compressed_data, std::string* decompressed_data) {
215 std::string dst(compressed_data.size(), ' ');
220 size_t src_remaining = compressed_data.size() - src_offset;
223 reinterpret_cast<const Byte*>(&compressed_data[src_offset]),
utils.h 157 bool XzDecompress(const std::string& compressed_data, std::string* decompressed_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;
401 D3DXPLAYBACK_TYPE playback_type, ID3DXBuffer *compressed_data, UINT callback_key_count,
  /art/dex2oat/linker/
image_writer.cc 230 std::unique_ptr<char[]> compressed_data; local
244 compressed_data.reset(new char[compressed_max_size]);
247 &compressed_data[0],
258 compressed_data.reset(new char[compressed_max_size]);
261 &compressed_data[0],
277 if (compressed_data != nullptr) {
278 image_data_to_write = &compressed_data[0];
284 reinterpret_cast<char*>(&compressed_data[0]),
294 const bool is_compressed = compressed_data != nullptr;
    [all...]
  /art/runtime/jit/
profile_compilation_info.cc     [all...]
  /external/squashfs-tools/squashfs-tools/
mksquashfs.c 6332 compressed_data, inode_dir_inode_number, local
    [all...]
  /art/openjdkjvmti/
ti_heap.cc 85 uint8_t* compressed_data = str->GetValueCompressed(); local
87 data[i] = compressed_data[i];
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 5073 ucvector compressed_data; local
    [all...]

Completed in 751 milliseconds