Lines Matching +full:zstd +full:- +full:src
5 * This source code is licensed under both the BSD-style license (found in the
8 * You may select, at your option, one of the above-listed licenses.
25 * Simple one-step function
28 ZSTDv02_decompress() : decompress ZSTD frames compliant with v0.2.x format
36 const void* src, size_t compressedSize);
39 …ZSTDv02_findFrameSizeInfoLegacy() : get the source length and decompressed bound of a ZSTD frame c…
40 srcSize : The size of the 'src' buffer, at least as large as the frame pointed to by 'src'
43 dBound (output parameter) : an upper-bound for the decompressed size of the data in the frame
48 void ZSTDv02_findFrameSizeInfoLegacy(const void *src, size_t srcSize,
66 const void* src, size_t compressedSize);
74 size_t ZSTDv02_decompressContinue(ZSTDv02_Dctx* dctx, void* dst, size_t maxDstSize, const void* src…
84 * Prefix - version detection