Home | History | Annotate | Download | only in lib

Lines Matching refs:pledgedSrcSize

577  *  Note 1 : pledgedSrcSize==0 actually means zero, aka an empty frame.
580 * Note 2 : pledgedSrcSize is only valid once, for the next frame.
587 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize);
2426 * with a few restrictions (windowLog, pledgedSrcSize, nbWorkers, jobSize, and overlapLog are not updated).
2632 * ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize);
2634 * pledgedSrcSize must be correct. If it is not known at init time, use
2643 unsigned long long pledgedSrcSize);
2667 * ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize);
2671 * pledgedSrcSize must be correct.
2680 unsigned long long pledgedSrcSize);
2698 * ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize);
2702 * pledgedSrcSize must be correct. If srcSize is not known at init time, use
2711 unsigned long long pledgedSrcSize);
2716 * ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize);
2717 * Note: ZSTD_resetCStream() interprets pledgedSrcSize == 0 as ZSTD_CONTENTSIZE_UNKNOWN, but
2724 * If pledgedSrcSize is not known at reset time, use macro ZSTD_CONTENTSIZE_UNKNOWN.
2725 * If pledgedSrcSize > 0, its value must be correct, as it will be written in header, and controlled at the end.
2726 * For the time being, pledgedSrcSize==0 is interpreted as "srcSize unknown" for compatibility with older programs,
2733 size_t ZSTD_resetCStream(ZSTD_CStream* zcs, unsigned long long pledgedSrcSize);
3035 size_t ZSTD_copyCCtx(ZSTD_CCtx* cctx, const ZSTD_CCtx* preparedCCtx, unsigned long long pledgedSrcSize); /**< note: if pledgedSrcSize is not known, use ZSTD_CONTENTSIZE_UNKNOWN */
3045 size_t ZSTD_compressBegin_advanced(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_parameters params, unsigned long long pledgedSrcSize); /**< pledgedSrcSize : If srcSize is not known at init time, use ZSTD_CONTENTSIZE_UNKNOWN */
3048 size_t ZSTD_compressBegin_usingCDict_advanced(ZSTD_CCtx* const cctx, const ZSTD_CDict* const cdict, ZSTD_frameParameters const fParams, unsigned long long const pledgedSrcSize); /* compression parameters are already set within cdict. pledgedSrcSize must be correct. If srcSize is not known, use macro ZSTD_CONTENTSIZE_UNKNOWN */