Searched refs:maxDstSizePtr (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v04.h95 size_t ZBUFFv04_decompressContinue(ZBUFFv04_DCtx* dctx, void* dst, size_t* maxDstSizePtr, const void* src, size_t* srcSizePtr);
110 * *srcSizePtr and *maxDstSizePtr can be any size.
111 * The function will report how many bytes were read or written by modifying *srcSizePtr and *maxDstSizePtr.
113 * The content of dst will be overwritten (up to *maxDstSizePtr) at each function call, so save its content if it matters or change dst.
H A Dzstd_v04.c2615 static size_t ZSTD_decompressLiterals(void* dst, size_t* maxDstSizePtr, argument
2623 if (litSize > *maxDstSizePtr) return ERROR(corruption_detected);
2628 *maxDstSizePtr = litSize;
3334 * *srcSizePtr and *maxDstSizePtr can be any size.
3335 * The function will report how many bytes were read or written by modifying *srcSizePtr and *maxDstSizePtr.
3337 * The content of dst will be overwritten (up to *maxDstSizePtr) at each function call, so save its content if it matters or change dst .
3422 static size_t ZBUFF_decompressContinue(ZBUFF_DCtx* zbc, void* dst, size_t* maxDstSizePtr, const void* src, size_t* srcSizePtr) argument
3429 char* const oend = ostart + *maxDstSizePtr;
3450 *maxDstSizePtr = 0;
3469 *maxDstSizePtr
3640 ZBUFFv04_decompressContinue(ZBUFFv04_DCtx* dctx, void* dst, size_t* maxDstSizePtr, const void* src, size_t* srcSizePtr) argument
[all...]
H A Dzstd_v05.c3814 * *srcSizePtr and *maxDstSizePtr can be any size.
3815 * The function will report how many bytes were read or written by modifying *srcSizePtr and *maxDstSizePtr.
3817 * The content of dst will be overwritten (up to *maxDstSizePtr) at each function call, so save its content if it matters or change dst .
3887 size_t ZBUFFv05_decompressContinue(ZBUFFv05_DCtx* zbc, void* dst, size_t* maxDstSizePtr, const void* src, size_t* srcSizePtr) argument
3894 char* const oend = ostart + *maxDstSizePtr;
3912 *maxDstSizePtr = 0;
3932 *maxDstSizePtr = 0;
4032 *maxDstSizePtr = op-ostart;
H A Dzstd_v03.c2489 static size_t ZSTD_decompressLiterals(void* dst, size_t* maxDstSizePtr, argument
2497 if (litSize > *maxDstSizePtr) return ERROR(corruption_detected);
2502 *maxDstSizePtr = litSize;
H A Dzstd_v02.c2848 static size_t ZSTD_decompressLiterals(void* dst, size_t* maxDstSizePtr, argument
2856 if (litSize > *maxDstSizePtr) return ERROR(corruption_detected);
2861 *maxDstSizePtr = litSize;

Completed in 123 milliseconds