Lines Matching refs:compressed_data
50 unsigned char** compressed_data, in zlib_compress() argument
55 *compressed_data = new unsigned char[*compressed_size + header_size]; in zlib_compress()
63 int rc = compress2(reinterpret_cast<Bytef*>(*compressed_data) + header_size, in zlib_compress()
70 memcpy(*compressed_data, "ZLIB", 4); in zlib_compress()
71 elfcpp::Swap_unaligned<64, true>::writeval(*compressed_data + 4, in zlib_compress()
78 delete[] *compressed_data; in zlib_compress()
79 *compressed_data = NULL; in zlib_compress()
91 zlib_decompress(const unsigned char* compressed_data, in zlib_decompress() argument
105 strm.next_in = const_cast<Bytef*>(compressed_data); in zlib_decompress()
149 get_uncompressed_size(const unsigned char* compressed_data, in get_uncompressed_size() argument
158 && strncmp(reinterpret_cast<const char*>(compressed_data), in get_uncompressed_size()
160 return elfcpp::Swap_unaligned<64, true>::readval(compressed_data + 4); in get_uncompressed_size()
167 decompress_input_section(const unsigned char* compressed_data, in decompress_input_section() argument
178 && strncmp(reinterpret_cast<const char*>(compressed_data), in decompress_input_section()
182 elfcpp::Swap_unaligned<64, true>::readval(compressed_data + 4); in decompress_input_section()
184 return zlib_decompress(compressed_data + zlib_header_size, in decompress_input_section()