Searched refs:dst_sz (Results 1 – 2 of 2) sorted by relevance
| /system/uapp/lz4/ |
| A D | main.c | 61 size_t dst_sz = 0; in do_decompress() local 71 size_t to_read = LZ4F_decompress(dctx, outbuf, &dst_sz, inbuf, &src_sz, NULL); in do_decompress() 86 dst_sz = BLOCK_SIZE; in do_decompress() 87 next = LZ4F_decompress(dctx, outbuf, &dst_sz, inbuf + pos, &src_sz, NULL); in do_decompress() 93 if (dst_sz) { in do_decompress() 94 ssize_t nw = write(outfd, outbuf, dst_sz); in do_decompress() 95 if (nw != (ssize_t)dst_sz) { in do_decompress()
|
| /system/ulib/fvm/ |
| A D | sparse-reader.cpp | 89 size_t dst_sz = 0; in ReadMetadata() local 106 to_read_ = LZ4F_decompress(dctx_, nullptr, &dst_sz, inbuf, &src_sz, NULL); in ReadMetadata() 198 size_t dst_sz = out_buf_.max_size - out_buf_.size; in ReadData() local 199 next = LZ4F_decompress(dctx_, out_buf_.data.get() + out_buf_.size, &dst_sz, in ReadData() 206 out_buf_.size += dst_sz; in ReadData()
|
Completed in 5 milliseconds