Home
last modified time | relevance | path

Searched refs:NCountLength (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/sys/contrib/zstd/lib/common/
Dfse_decompress.c286 …size_t const NCountLength = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize… in FSE_decompress_wksp() local
287 if (FSE_isError(NCountLength)) return NCountLength; in FSE_decompress_wksp()
290 ip += NCountLength; in FSE_decompress_wksp()
291 cSrcSize -= NCountLength; in FSE_decompress_wksp()
/freebsd-12-stable/sys/contrib/zstd/lib/legacy/
Dzstd_v06.c1661 …{ size_t const NCountLength = FSEv06_readNCount (counting, &maxSymbolValue, &tableLog, istart, c… in FSEv06_decompress() local
1662 if (FSEv06_isError(NCountLength)) return NCountLength; in FSEv06_decompress()
1663 if (NCountLength >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSEv06_decompress()
1664 ip += NCountLength; in FSEv06_decompress()
1665 cSrcSize -= NCountLength; in FSEv06_decompress()
Dzstd_v07.c1681 …{ size_t const NCountLength = FSEv07_readNCount (counting, &maxSymbolValue, &tableLog, istart, c… in FSEv07_decompress() local
1682 if (FSEv07_isError(NCountLength)) return NCountLength; in FSEv07_decompress()
1683 if (NCountLength >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ in FSEv07_decompress()
1684 ip += NCountLength; in FSEv07_decompress()
1685 cSrcSize -= NCountLength; in FSEv07_decompress()