OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ZSTD_decompressDCtx
(Results
1 - 20
of
20
) sorted by relevancy
/src/external/bsd/zstd/dist/tests/fuzz/
simple_decompress.c
43
size_t const dSize =
ZSTD_decompressDCtx
(dctx, rBuf, bufSize, src, size);
decompress_cross_format.c
62
const size_t standardRet =
ZSTD_decompressDCtx
(
67
const size_t magiclessRet =
ZSTD_decompressDCtx
(
decompress_dstSize_tooSmall.c
58
size_t const rSize =
ZSTD_decompressDCtx
(dctx, rBuf, rBufSize, cBuf, cSize);
dictionary_decompress.c
65
ZSTD_decompressDCtx
(dctx, rBuf, bufSize, src, size);
raw_dictionary_round_trip.c
64
size_t const ret =
ZSTD_decompressDCtx
(
dictionary_loader.c
62
size_t const resultSize =
ZSTD_decompressDCtx
(
simple_round_trip.c
96
dSize =
ZSTD_decompressDCtx
(dctx, result, resultCapacity, compressed, cSize);
109
dSize =
ZSTD_decompressDCtx
(dctx, output, outputSize, input, cSize);
dictionary_round_trip.c
103
size_t const ret =
ZSTD_decompressDCtx
(
sequence_compression_api.c
284
{ size_t const dSize =
ZSTD_decompressDCtx
(dctx, result, resultCapacity, compressed, cSize);
329
dSize =
ZSTD_decompressDCtx
(dctx, result, resultCapacity, compressed, cSize);
dictionary_stream_round_trip.c
195
ZSTD_decompressDCtx
(dctx, rBuf, neededBufSize, cBuf, cSize);
stream_round_trip.c
202
dSize =
ZSTD_decompressDCtx
(dctx, output, outputSize, input, cSize);
/src/external/bsd/zstd/dist/contrib/linux-kernel/
zstd_decompress_module.c
58
return
ZSTD_decompressDCtx
(dctx, dst, dst_capacity, src, src_size);
/src/external/bsd/zstd/dist/tests/
fuzzer.c
938
r =
ZSTD_decompressDCtx
(dctx, decodedBuffer, CNBuffSize, compressedBuffer, cSize-1);
940
r =
ZSTD_decompressDCtx
(dctx, decodedBuffer, CNBuffSize, compressedBuffer, cSize);
1054
CHECK_Z(
ZSTD_decompressDCtx
(dctx, decodedBuffer, CNBuffSize, compressedBuffer, cSize));
1057
CHECK(ZSTD_isError(
ZSTD_decompressDCtx
(dctx, decodedBuffer, CNBuffSize, compressedBuffer, cSize)));
1312
reconSize =
ZSTD_decompressDCtx
(dctx, recon, size, dst, refPrefixCompressedSize);
1325
reconSize =
ZSTD_decompressDCtx
(dctx, recon, size, dst, refPrefixLdmCompressedSize);
2040
{ size_t const r =
ZSTD_decompressDCtx
(staticDCtx,
2112
size_t const r =
ZSTD_decompressDCtx
(staticDCtx,
2131
size_t const r =
ZSTD_decompressDCtx
(staticDCtx,
2156
size_t const r =
ZSTD_decompressDCtx
(staticDCtx
[
all
...]
zstreamtest.c
741
CHECK_Z(
ZSTD_decompressDCtx
(dctx, decodedBuffer, CNBufferSize, compressedBuffer, cSize));
1299
DISPLAYLEVEL(3, "test%3i :
ZSTD_decompressDCtx
() with prefix : ", testNb++);
1327
CHECK_Z(
ZSTD_decompressDCtx
(dctx, decodedBuffer, decodedBufferSize, compressedBuffer, cSize) );
1329
CHECK_Z(
ZSTD_decompressDCtx
(dctx, decodedBuffer, decodedBufferSize, compressedBuffer, cSize) );
1332
CHECK_Z(
ZSTD_decompressDCtx
(dctx, decodedBuffer, decodedBufferSize, compressedBuffer, cSize) );
1334
CHECK_Z(
ZSTD_decompressDCtx
(dctx, decodedBuffer, decodedBufferSize, compressedBuffer, cSize) );
1337
ret =
ZSTD_decompressDCtx
(dctx, decodedBuffer, decodedBufferSize, compressedBuffer, cSize);
2344
size_t dSize =
ZSTD_decompressDCtx
(dctx, checkBuf, srcSize, dst, cSize);
fullbench.c
172
return
ZSTD_decompressDCtx
(g_zdc, dst, dstSize, src, srcSize);
/src/external/bsd/zstd/dist/tests/regression/
method.c
221
state->decompressed.size =
ZSTD_decompressDCtx
(
/src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c
19
* Note that functions with explicit context such as
ZSTD_decompressDCtx
() are unaffected.
1197
size_t
ZSTD_decompressDCtx
(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize)
1209
regenSize =
ZSTD_decompressDCtx
(dctx, dst, dstCapacity, src, srcSize);
1215
return
ZSTD_decompressDCtx
(&dctx, dst, dstCapacity, src, srcSize);
/src/external/bsd/zstd/dist/lib/
zstd.h
307
/*!
ZSTD_decompressDCtx
() :
312
ZSTDLIB_API size_t
ZSTD_decompressDCtx
(ZSTD_DCtx* dctx,
636
* Note : This API is compatible with existing
ZSTD_decompressDCtx
() and ZSTD_decompressStream().
946
* or is implied for operations starting some new decompression job (`ZSTD_initDStream`, `
ZSTD_decompressDCtx
()`, `ZSTD_decompress_usingDict()`)
1078
* ZSTD_compressStream2(), and
ZSTD_decompressDCtx
().
1552
*
ZSTD_decompressDCtx
().
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v03.c
2848
static size_t
ZSTD_decompressDCtx
(void* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
2909
return
ZSTD_decompressDCtx
(&ctx, dst, maxDstSize, src, srcSize);
zstd_v02.c
3209
static size_t
ZSTD_decompressDCtx
(void* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
3270
return
ZSTD_decompressDCtx
(&ctx, dst, maxDstSize, src, srcSize);
Completed in 39 milliseconds
Indexes created Thu Aug 06 00:25:04 UTC 2026