Home | History | Annotate | Download | only in metrics

Lines Matching refs:Bytef

31 int GzipCompressHelper(Bytef* dest,
33 const Bytef* source,
37 stream.next_in = bit_cast<Bytef*>(source);
77 int GzipUncompressHelper(Bytef* dest,
79 const Bytef* source,
83 stream.next_in = bit_cast<Bytef*>(source);
130 std::vector<Bytef> compressed_data(kGzipZlibHeaderDifferenceBytes +
136 bit_cast<const Bytef*>(input.data()),
150 return GzipUncompressHelper(bit_cast<Bytef*>(output->data()),
152 bit_cast<const Bytef*>(input.data()),