Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/common/
H A Dfse_decompress.c308 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, … in FSE_decompress_wksp() argument
310 …return FSE_decompress_wksp_bmi2(dst, dstCapacity, cSrc, cSrcSize, maxLog, workSpace, wkspSize, /* … in FSE_decompress_wksp()
322 unsigned maxLog, void* workSpace, size_t wkspSize, in FSE_decompress_wksp_body() argument
338 if (tableLog > maxLog) return ERROR(tableLog_tooLarge); in FSE_decompress_wksp_body()
362 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, … in FSE_decompress_wksp_body_default() argument
364 … return FSE_decompress_wksp_body(dst, dstCapacity, cSrc, cSrcSize, maxLog, workSpace, wkspSize, 0); in FSE_decompress_wksp_body_default()
368 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, … in FSE_decompress_wksp_body_bmi2() argument
370 … return FSE_decompress_wksp_body(dst, dstCapacity, cSrc, cSrcSize, maxLog, workSpace, wkspSize, 1); in FSE_decompress_wksp_body_bmi2()
374 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, … in FSE_decompress_wksp_bmi2() argument
378 …return FSE_decompress_wksp_body_bmi2(dst, dstCapacity, cSrc, cSrcSize, maxLog, workSpace, wkspSize… in FSE_decompress_wksp_bmi2()
[all …]
H A Dfse.h358 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, …
361 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, …
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dfse_decompress.c243 …dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, FSE_DTable* workSpace, unsigned maxLog) in FSE_decompress_wksp() argument
255 if (tableLog > maxLog) return ERROR(tableLog_tooLarge); in FSE_decompress_wksp()
H A Dfse.h335 …st, size_t dstCapacity, const void* cSrc, size_t cSrcSize, FSE_DTable* workSpace, unsigned maxLog);
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress_block.c434 symbolEncodingType_e type, unsigned max, U32 maxLog, in ZSTD_buildSeqTable() argument
460 size_t const pSize = sizeof(ZSTD_seqSymbol) * (SEQSYMBOL_TABLE_SIZE(maxLog)); in ZSTD_buildSeqTable()
469 RETURN_ERROR_IF(tableLog > maxLog, corruption_detected, ""); in ZSTD_buildSeqTable()
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c606 symbolEncodingType_e type, unsigned max, U32 maxLog, in ZSTD_buildSeqTable() argument
633 size_t const pSize = sizeof(ZSTD_seqSymbol) * (SEQSYMBOL_TABLE_SIZE(maxLog)); in ZSTD_buildSeqTable()
642 RETURN_ERROR_IF(tableLog > maxLog, corruption_detected, ""); in ZSTD_buildSeqTable()
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v06.c3188 static size_t ZSTDv06_buildSeqTable(FSEv06_DTable* DTable, U32 type, U32 max, U32 maxLog, in ZSTDv06_buildSeqTable() argument
3211 if (tableLog > maxLog) return ERROR(corruption_detected); in ZSTDv06_buildSeqTable()
H A Dzstd_v07.c3418 static size_t ZSTDv07_buildSeqTable(FSEv07_DTable* DTable, U32 type, U32 max, U32 maxLog, in ZSTDv07_buildSeqTable() argument
3441 if (tableLog > maxLog) return ERROR(corruption_detected); in ZSTDv07_buildSeqTable()