Searched refs:NCountLength (Results 1 – 4 of 4) sorted by relevance
| /f-stack/freebsd/contrib/zstd/lib/common/ |
| H A D | fse_decompress.c | 327 …size_t const NCountLength = FSE_readNCount_bmi2(counting, &maxSymbolValue, &tableLog, istart, cSrc… in FSE_decompress_wksp_body() local 328 if (FSE_isError(NCountLength)) return NCountLength; in FSE_decompress_wksp_body() 330 assert(NCountLength <= cSrcSize); in FSE_decompress_wksp_body() 331 ip += NCountLength; in FSE_decompress_wksp_body() 332 cSrcSize -= NCountLength; in FSE_decompress_wksp_body()
|
| /f-stack/freebsd/contrib/zstd/lib/legacy/ |
| H A D | zstd_v06.c | 1665 …{ size_t const NCountLength = FSEv06_readNCount (counting, &maxSymbolValue, &tableLog, istart, c… in FSEv06_decompress() local 1666 if (FSEv06_isError(NCountLength)) return NCountLength; in FSEv06_decompress() 1667 if (NCountLength >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSEv06_decompress() 1668 ip += NCountLength; in FSEv06_decompress() 1669 cSrcSize -= NCountLength; in FSEv06_decompress()
|
| H A D | zstd_v07.c | 1685 …{ size_t const NCountLength = FSEv07_readNCount (counting, &maxSymbolValue, &tableLog, istart, c… in FSEv07_decompress() local 1686 if (FSEv07_isError(NCountLength)) return NCountLength; in FSEv07_decompress() 1687 if (NCountLength >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSEv07_decompress() 1688 ip += NCountLength; in FSEv07_decompress() 1689 cSrcSize -= NCountLength; in FSEv07_decompress()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 3015 …size_t const NCountLength = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize… in FSE_decompress_wksp() local 3016 if (FSE_isError(NCountLength)) return NCountLength; in FSE_decompress_wksp() 3019 ip += NCountLength; in FSE_decompress_wksp() 3020 cSrcSize -= NCountLength; in FSE_decompress_wksp()
|