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

  /toolchain/binutils/binutils-2.25/gold/
compressed_output.cc 42 // sets *COMPRESSED_DATA and *COMPRESSED_SIZE to appropriate values.
43 // It also writes a header before COMPRESSED_DATA: 4 bytes saying
50 unsigned char** compressed_data,
55 *compressed_data = new unsigned char[*compressed_size + header_size];
63 int rc = compress2(reinterpret_cast<Bytef*>(*compressed_data) + header_size,
70 memcpy(*compressed_data, "ZLIB", 4);
71 elfcpp::Swap_unaligned<64, true>::writeval(*compressed_data + 4,
78 delete[] *compressed_data;
79 *compressed_data = NULL;
84 // Decompress COMPRESSED_DATA of size COMPRESSED_SIZE, into a buffe
    [all...]
  /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/zlib/src/contrib/ada/
buffer_demo.adb 42 Compressed_Data : Stream_Element_Array (1 .. Text'Length);
53 Translate (Compressor, Source, I, Compressed_Data, L, Finish);
77 P : Stream_Element_Offset := Compressed_Data'First - 1;
85 Compressed_Data
  /system/update_engine/payload_consumer/
bzip_extent_writer_unittest.cc 95 brillo::Blob compressed_data(std::begin(kCompressedData),
115 brillo::Blob original_compressed_data = compressed_data;
116 for (brillo::Blob::size_type i = 0; i < compressed_data.size();
118 size_t this_chunk_size = min(kChunkSize, compressed_data.size() - i);
119 EXPECT_TRUE(bzip_writer.Write(&compressed_data[i], this_chunk_size));
124 test_utils::ExpectVectorsEq(original_compressed_data, 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 150 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/compiler/
image_writer.cc 228 std::unique_ptr<char[]> compressed_data; local
242 compressed_data.reset(new char[compressed_max_size]);
245 &compressed_data[0],
256 compressed_data.reset(new char[compressed_max_size]);
259 &compressed_data[0],
275 if (compressed_data != nullptr) {
276 image_data_to_write = &compressed_data[0];
282 reinterpret_cast<char*>(&compressed_data[0]),
292 const bool is_compressed = compressed_data != nullptr;
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder.h 140 int16 compressed_data[],
  /art/runtime/jit/
profile_compilation_info.cc     [all...]
  /art/runtime/openjdkjvmti/
ti_heap.cc 85 uint8_t* compressed_data = str->GetValueCompressed(); local
87 data[i] = compressed_data[i];
    [all...]
  /external/squashfs-tools/squashfs-tools/
mksquashfs.c 6329 compressed_data, inode_dir_inode_number, local
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 5073 ucvector compressed_data; local
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/
netty-codec-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.3.Final/
netty-codec-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.6.Final/
netty-codec-4.1.6.Final.jar 
  /prebuilts/abi-dumps/vndk/current/x86/source-based/
libstagefright_soft_amrdec.so.lsdump.gz 

Completed in 444 milliseconds