Home
last modified time | relevance | path

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

/packages/modules/adb/
Dcompression_utils.h147 uint8_t* next_out = reinterpret_cast<uint8_t*>(output_buffer_.data()); in Decode() local
150 decoder_.get(), &available_in, &next_in, &available_out, &next_out, nullptr); in Decode()
196 uint8_t* next_out = reinterpret_cast<uint8_t*>( in Encode() local
205 &available_out, &next_out, nullptr)) { in Encode()
251 char* next_out = output_buffer_.data(); in Decode() local
253 size_t rc = LZ4F_decompress(decoder_.get(), next_out, &available_out, next_in, in Decode()
332 char* next_out = encode_block.data(); in Encode() local
334 size_t rc = LZ4F_compressUpdate(encoder_.get(), next_out, available_out, next_in, in Encode()
344 next_out += rc; in Encode()