Searched refs:NCountLength (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12-stable/sys/contrib/zstd/lib/common/ |
| D | fse_decompress.c | 286 …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/ |
| D | zstd_v06.c | 1661 …{ 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()
|
| D | zstd_v07.c | 1681 …{ 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()
|