Searched refs:NCountLength (Results 1 - 2 of 2) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | fse_decompress.c | 293 size_t NCountLength; in FSE_decompress_wksp() local 312 NCountLength = FSE_readNCount(counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress_wksp() 313 if (FSE_isError(NCountLength)) in FSE_decompress_wksp() 314 return NCountLength; in FSE_decompress_wksp() 315 // if (NCountLength >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size; supposed to be already checked in NCountLength, only remaining in FSE_decompress_wksp() 316 // case : NCountLength==cSrcSize */ in FSE_decompress_wksp() 319 ip += NCountLength; in FSE_decompress_wksp() 320 cSrcSize -= NCountLength; in FSE_decompress_wksp()
|
/kernel/linux/linux-6.6/lib/zstd/common/ |
H A D | fse_decompress.c | 336 size_t const NCountLength = FSE_readNCount_bmi2(wksp->ncount, &maxSymbolValue, &tableLog, istart, cSrcSize, bmi2); in FSE_decompress_wksp_body() local 337 if (FSE_isError(NCountLength)) return NCountLength; in FSE_decompress_wksp_body() 339 assert(NCountLength <= cSrcSize); in FSE_decompress_wksp_body() 340 ip += NCountLength; in FSE_decompress_wksp_body() 341 cSrcSize -= NCountLength; in FSE_decompress_wksp_body()
|
Completed in 3 milliseconds