Home
last modified time | relevance | path

Searched refs:decompress_buf (Results 1 – 4 of 4) sorted by relevance

/external/rust/android-crates-io/crates/tonic/src/codec/
Ddecode.rs33 decompress_buf: BytesMut, field
132 decompress_buf: BytesMut::new(), in new()
206 self.decompress_buf.clear(); in decode_chunk()
208 if let Err(err) = decompress(encoding, &mut self.buf, &mut self.decompress_buf, len) in decode_chunk()
220 let decompressed_len = self.decompress_buf.len(); in decode_chunk()
221 DecodeBuf::new(&mut self.decompress_buf, decompressed_len) in decode_chunk()
/external/python/cpython3/Modules/
D_bz2module.c430 decompress_buf(BZ2Decompressor *d, Py_ssize_t max_length) in decompress_buf() function
538 result = decompress_buf(d, max_length); in decompress()
D_lzmamodule.c939 decompress_buf(Decompressor *d, Py_ssize_t max_length) in decompress_buf() function
1048 result = decompress_buf(d, max_length); in decompress()
Dzlibmodule.c1446 decompress_buf(ZlibDecompressor *self, Py_ssize_t max_length) in decompress_buf() function
1595 result = decompress_buf(self, max_length); in decompress()