Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Ddecompress.c2381 size_t const neededInSize = ZSTD_nextSrcSizeToDecompress(zds->dctx); in ZSTD_decompressStream() local
2382 if (neededInSize == 0) { /* end of frame */ in ZSTD_decompressStream()
2387 if ((size_t)(iend - ip) >= neededInSize) { /* decode directly from src */ in ZSTD_decompressStream()
2390 (isSkipFrame ? 0 : zds->outBuffSize - zds->outStart), ip, neededInSize); in ZSTD_decompressStream()
2393 ip += neededInSize; in ZSTD_decompressStream()
2409 size_t const neededInSize = ZSTD_nextSrcSizeToDecompress(zds->dctx); in ZSTD_decompressStream() local
2410 …size_t const toLoad = neededInSize - zds->inPos; /* should always be <= remaining space within inB… in ZSTD_decompressStream()
2426 zds->inBuff, neededInSize); in ZSTD_decompressStream()