HomeSort by: relevance | last modified time | path
    Searched refs:ZSTD_nextSrcSizeToDecompress (Results 1 - 7 of 7) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v04.c 230 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx);
251 Use ZSTD_nextSrcSizeToDecompress() and ZSTD_decompressContinue() alternatively.
252 ZSTD_nextSrcSizeToDecompress() tells how much bytes to provide as 'srcSize' to ZSTD_decompressContinue().
260 A frame is fully decoded when ZSTD_nextSrcSizeToDecompress() returns zero.
3141 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx)
3455 size_t neededInSize = ZSTD_nextSrcSizeToDecompress(zbc->zc);
3481 size_t neededInSize = ZSTD_nextSrcSizeToDecompress(zbc->zc);
3527 size_t nextSrcSizeHint = ZSTD_nextSrcSizeToDecompress(zbc->zc);
3574 return ZSTD_nextSrcSizeToDecompress(dctx);
zstd_v03.c 869 ZSTD_nextSrcSizeToDecompress() tells how much bytes to provide as 'srcSize' to ZSTD_decompressContinue().
2995 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx)
3099 return ZSTD_nextSrcSizeToDecompress((ZSTD_DCtx*)dctx);
zstd_v02.c 869 ZSTD_nextSrcSizeToDecompress() tells how much bytes to provide as 'srcSize' to ZSTD_decompressContinue().
3355 static size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx)
3459 return ZSTD_nextSrcSizeToDecompress((ZSTD_DCtx*)dctx);
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c 1224 size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) { return dctx->expected; }
1227 * Similar to ZSTD_nextSrcSizeToDecompress(), but when a block input can be streamed, we
1272 * srcSize : must be the exact nb of bytes expected (see ZSTD_nextSrcSizeToDecompress())
2294 { size_t const neededInSize = ZSTD_nextSrcSizeToDecompress(zds);
2366 { size_t nextSrcSizeHint = ZSTD_nextSrcSizeToDecompress(zds);
  /src/external/bsd/zstd/dist/lib/
zstd.h 3096 Then use ZSTD_nextSrcSizeToDecompress() and ZSTD_decompressContinue() alternatively.
3097 ZSTD_nextSrcSizeToDecompress() tells how many bytes to provide as 'srcSize' to ZSTD_decompressContinue().
3104 A frame is fully decoded when ZSTD_nextSrcSizeToDecompress() returns zero.
3130 ZSTDLIB_STATIC_API size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx);
  /src/external/bsd/zstd/dist/tests/
fullbench.c 519 size_t const iSize = ZSTD_nextSrcSizeToDecompress(g_zdc);
fuzzer.c 4932 size_t const inSize = ZSTD_nextSrcSizeToDecompress(dctx);
4938 CHECK (ZSTD_nextSrcSizeToDecompress(dctx) != 0, "frame not fully decoded");

Completed in 38 milliseconds