Searched refs:FSE_readNCount (Results 1 - 11 of 11) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/ |
H A D | zstd_common_module.c | 21 EXPORT_SYMBOL_GPL(FSE_readNCount); variable
|
/kernel/linux/linux-6.6/lib/zstd/common/ |
H A D | entropy_common.c | 78 { size_t const countSize = FSE_readNCount(normalizedCounter, maxSVPtr, tableLogPtr, in FSE_readNCount_body() 236 size_t FSE_readNCount( in FSE_readNCount() function
|
H A D | fse.h | 139 smaller. And when it is set to 0, FSE_readNCount() and FSE_buildDTable() will be 225 /*! FSE_readNCount(): 230 FSE_PUBLIC_API size_t FSE_readNCount (short* normalizedCounter, 235 * Same as FSE_readNCount() but pass bmi2=1 when your CPU supports BMI2 and 0 otherwise. 267 This can be performed by FSE_readNCount() if it was saved using FSE_writeNCount(). 271 FSE_readNCount() will provide 'tableLog' and 'maxSymbolValue'. 272 The result of FSE_readNCount() is the number of bytes read from 'rBuffer'.
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | entropy_common.c | 59 size_t FSE_readNCount(short *normalizedCounter, unsigned *maxSVPtr, unsigned *tableLogPtr, const void *headerBuffer, size_t hbSize) in FSE_readNCount() function
|
H A D | fse.h | 176 /*! FSE_readNCount(): 181 FSE_PUBLIC_API size_t FSE_readNCount(short *normalizedCounter, unsigned *maxSymbolValuePtr, unsigned *tableLogPtr, const void *rBuffer, size_t rBuffSize); 207 This can be performed by FSE_readNCount() if it was saved using FSE_writeNCount(). 211 FSE_readNCount() will provide 'tableLog' and 'maxSymbolValue'. 212 The result of FSE_readNCount() is the number of bytes read from 'rBuffer'.
|
H A D | fse_decompress.c | 312 NCountLength = FSE_readNCount(counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress_wksp()
|
H A D | decompress.c | 781 size_t const headerSize = FSE_readNCount(norm, &max, &tableLog, src, srcSize); in ZSTD_buildSeqTable() 1893 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadEntropy() 1905 size_t const matchlengthHeaderSize = FSE_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadEntropy() 1917 size_t const litlengthHeaderSize = FSE_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadEntropy()
|
H A D | compress.c | 2646 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadZstdDictionary() 2660 size_t const matchlengthHeaderSize = FSE_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadZstdDictionary() 2676 size_t const litlengthHeaderSize = FSE_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadZstdDictionary()
|
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A D | zstd_decompress.c | 1318 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, (size_t)(dictEnd-dictPtr)); in ZSTD_loadDEntropy() 1333 size_t const matchlengthHeaderSize = FSE_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, (size_t)(dictEnd-dictPtr)); in ZSTD_loadDEntropy() 1348 size_t const litlengthHeaderSize = FSE_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, (size_t)(dictEnd-dictPtr)); in ZSTD_loadDEntropy()
|
H A D | zstd_decompress_block.c | 640 size_t const headerSize = FSE_readNCount(norm, &max, &tableLog, src, srcSize); in ZSTD_buildSeqTable()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress.c | 2580 * FSE_readNCount() receives a buffer < 4 bytes. in ZSTD_entropyCompressSeqStore_internal() 4249 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr); in ZSTD_loadCEntropy() 4264 size_t const matchlengthHeaderSize = FSE_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, dictEnd-dictPtr); in ZSTD_loadCEntropy() 4278 size_t const litlengthHeaderSize = FSE_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, dictEnd-dictPtr); in ZSTD_loadCEntropy()
|
Completed in 31 milliseconds