Lines Matching refs:Bytef
22 static_assert(sizeof(Bytef) == 1, ""); in GzipCompress()
27 bit_cast<Bytef*>(output_buffer), &compressed_size_long, in GzipCompress()
28 bit_cast<const Bytef*>(input.data()), in GzipCompress()
44 static_assert(sizeof(Bytef) == 1, ""); in GzipCompress()
50 Bytef* compressed_data; in GzipCompress()
57 bit_cast<const Bytef*>(input.data()), in GzipCompress()
63 Bytef* resized_data = in GzipCompress()
64 reinterpret_cast<Bytef*>(realloc(compressed_data, compressed_data_size)); in GzipCompress()
84 bit_cast<Bytef*>(uncompressed_output.data()), &uncompressed_size, in GzipUncompress()
85 bit_cast<const Bytef*>(input.data()), in GzipUncompress()
104 bit_cast<Bytef*>(output.data()), &uncompressed_size, in GzipUncompress()
105 bit_cast<const Bytef*>(input.data()), in GzipUncompress()
119 bit_cast<Bytef*>(output->data()), &uncompressed_size, in GzipUncompress()
120 bit_cast<const Bytef*>(input.data()), in GzipUncompress()
130 bit_cast<Bytef*>(compressed_data.data()), compressed_data.size()); in GetUncompressedSize()