Searched refs:symbolValue (Results 1 - 8 of 8) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/common/ |
H A D | fse.h | 330 size_t FSE_buildCTable_rle (FSE_CTable* ct, unsigned char symbolValue); 331 /*< build a fake FSE_CTable, designed to compress always the same symbolValue */ 350 size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue); 351 /*< build a fake FSE_DTable, designed to always generate the same symbolValue */ 556 * note 1 : assume symbolValue is valid (<= maxSymbolValue) 557 * note 2 : if freq[symbolValue]==0, @return a fake cost of tableLog+1 bits */ 558 MEM_STATIC U32 FSE_getMaxNbBits(const void* symbolTTPtr, U32 symbolValue) in FSE_getMaxNbBits() argument 561 return (symbolTT[symbolValue].deltaNbBits + ((1<<16)-1)) >> 16; in FSE_getMaxNbBits() 566 * note 1 : assume symbolValue is valid (<= maxSymbolValue) 567 * note 2 : if freq[symbolValue] 568 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) FSE_bitCost() argument [all...] |
H A D | fse_decompress.c | 187 size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() argument 198 cell->symbol = symbolValue; in FSE_buildDTable_rle()
|
H A D | huf.h | 248 * Read nbBits from CTable symbolTable, for symbol `symbolValue` presumed <= HUF_SYMBOLVALUE_MAX 250 U32 HUF_getNbBitsFromCTable(const HUF_CElt* symbolTable, U32 symbolValue);
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | fse_compress.c | 702 size_t FSE_buildCTable_rle(FSE_CTable *ct, BYTE symbolValue) in FSE_buildCTable_rle() argument 711 tableU16[-1] = (U16)symbolValue; in FSE_buildCTable_rle() 718 symbolTT[symbolValue].deltaNbBits = 0; in FSE_buildCTable_rle() 719 symbolTT[symbolValue].deltaFindState = 0; in FSE_buildCTable_rle()
|
H A D | fse.h | 269 size_t FSE_buildCTable_rle(FSE_CTable *ct, unsigned char symbolValue); 270 /**< build a fake FSE_CTable, designed to compress always the same symbolValue */ 281 size_t FSE_buildDTable_rle(FSE_DTable *dt, unsigned char symbolValue); 282 /**< build a fake FSE_DTable, designed to always generate the same symbolValue */
|
H A D | fse_decompress.c | 163 size_t FSE_buildDTable_rle(FSE_DTable *dt, BYTE symbolValue) in FSE_buildDTable_rle() argument 174 cell->symbol = symbolValue; in FSE_buildDTable_rle()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | fse_compress.c | 570 size_t FSE_buildCTable_rle (FSE_CTable* ct, BYTE symbolValue) in FSE_buildCTable_rle() argument 579 tableU16[-1] = (U16) symbolValue; in FSE_buildCTable_rle() 586 symbolTT[symbolValue].deltaNbBits = 0; in FSE_buildCTable_rle() 587 symbolTT[symbolValue].deltaFindState = 0; in FSE_buildCTable_rle()
|
H A D | huf_compress.c | 270 U32 HUF_getNbBitsFromCTable(HUF_CElt const* CTable, U32 symbolValue) in HUF_getNbBitsFromCTable() argument 273 assert(symbolValue <= HUF_SYMBOLVALUE_MAX); in HUF_getNbBitsFromCTable() 274 return (U32)HUF_getNbBits(ct[symbolValue]); in HUF_getNbBitsFromCTable()
|
Completed in 13 milliseconds