Searched refs:LZ4F_decompress (Results 1 - 6 of 6) sorted by relevance

/fuchsia/zircon/system/ulib/blobfs/
H A Dlz4.cpp104 size_t r = LZ4F_decompress(ctx, target, &dst_sz_next, src, &src_sz_next, nullptr);
/fuchsia/zircon/third_party/ulib/lz4/include/lz4/
H A Dlz4frame.h260 * Its usage is optional : you can start by calling directly LZ4F_decompress() instead.
265 * The function result is an hint of how many srcSize bytes LZ4F_decompress() expects for next call,
271 size_t LZ4F_decompress(LZ4F_decompressionContext_t dctx,
275 /* LZ4F_decompress()
284 * LZ4F_decompress() must be called again, starting from where it stopped (srcBuffer + *srcSizePtr)
290 * The function result is an hint of how many srcSize bytes LZ4F_decompress() expects for next call.
/fuchsia/zircon/system/uapp/lz4/
H A Dmain.c71 size_t to_read = LZ4F_decompress(dctx, outbuf, &dst_sz, inbuf, &src_sz, NULL);
87 next = LZ4F_decompress(dctx, outbuf, &dst_sz, inbuf + pos, &src_sz, NULL);
/fuchsia/zircon/system/ulib/fvm/
H A Dfvm-lz4.cpp92 to_read_ = LZ4F_decompress(dctx_, nullptr, &dst_sz, inbuf, &src_sz, NULL);
185 next = LZ4F_decompress(dctx_, out_buf_.data.get() + out_buf_.size, &dst_sz,
/fuchsia/zircon/third_party/ulib/lz4/
H A Dlz4frame.c920 * It is optional : you could start by calling directly LZ4F_decompress() instead.
925 * The function result is an hint of the better srcSize to use for next call to LZ4F_decompress,
939 return LZ4F_decompress(dCtx, NULL, &o, NULL, &i, NULL);
944 size_t nextSrcSize = LZ4F_decompress(dCtx, NULL, &o, srcBuffer, srcSizePtr, NULL);
1027 /* LZ4F_decompress()
1037 * The function result is an hint of the better srcSize to use for next call to LZ4F_decompress.
1044 size_t LZ4F_decompress(LZ4F_decompressionContext_t decompressionContext, function
/fuchsia/zircon/system/host/zbi/
H A Dzbi.cpp567 LZ4F_CALL(LZ4F_decompress, ctx, dst, &nwritten, src, &nread,

Completed in 28 milliseconds