| /freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
| H A D | fse_compress.c | 70 const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, in FSE_buildCTable_wksp() 224 size_t FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog) in FSE_NCountWriteBound() 236 const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, in FSE_writeNCount_generic() 332 const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) in FSE_writeNCount() 361 U32 tableLog = maxTableLog; in FSE_optimalTableLog_internal() local 380 static size_t FSE_normalizeM2(short* norm, U32 tableLog, const unsigned* count, size_t total, U32 m… in FSE_normalizeM2() 466 size_t FSE_normalizeCount (short* normalizedCounter, unsigned tableLog, in FSE_normalizeCount()
|
| H A D | zstd_compress_sequences.c | 76 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); in ZSTD_NCountCost() local 121 unsigned const tableLog = cstate.stateLog; in ZSTD_fseBitCost() local 271 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); in ZSTD_buildCTable() local
|
| H A D | huf_compress.c | 157 U32 tableLog = MAX_FSE_TABLELOG_FOR_HUFF_HEADER; in HUF_compressWeights() local 231 static void HUF_writeCTableHeader(HUF_CElt* ctable, U32 tableLog, U32 maxSymbolValue) in HUF_writeCTableHeader() 297 U32 tableLog = 0; in HUF_readCTable() local 1050 static size_t HUF_tightCompressBound(size_t srcSize, size_t tableLog) in HUF_tightCompressBound() 1061 U32 const tableLog = HUF_readCTableHeader(CTable).tableLog; in HUF_compress1X_usingCTable_internal_body() local
|
| /freebsd/sys/contrib/zstd/lib/compress/ |
| H A D | fse_compress.c | 69 const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, in FSE_buildCTable_wksp() 223 size_t FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog) in FSE_NCountWriteBound() 235 const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, in FSE_writeNCount_generic() 331 const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) in FSE_writeNCount() 360 U32 tableLog = maxTableLog; in FSE_optimalTableLog_internal() local 379 static size_t FSE_normalizeM2(short* norm, U32 tableLog, const unsigned* count, size_t total, U32 m… in FSE_normalizeM2() 465 size_t FSE_normalizeCount (short* normalizedCounter, unsigned tableLog, in FSE_normalizeCount()
|
| H A D | zstd_compress_sequences.c | 75 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); in ZSTD_NCountCost() local 120 unsigned const tableLog = cstate.stateLog; in ZSTD_fseBitCost() local 270 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); in ZSTD_buildCTable() local
|
| H A D | huf_compress.c | 156 U32 tableLog = MAX_FSE_TABLELOG_FOR_HUFF_HEADER; in HUF_compressWeights() local 230 static void HUF_writeCTableHeader(HUF_CElt* ctable, U32 tableLog, U32 maxSymbolValue) in HUF_writeCTableHeader() 296 U32 tableLog = 0; in HUF_readCTable() local 1049 static size_t HUF_tightCompressBound(size_t srcSize, size_t tableLog) in HUF_tightCompressBound() 1060 U32 const tableLog = HUF_readCTableHeader(CTable).tableLog; in HUF_compress1X_usingCTable_internal_body() local
|
| /freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
| H A D | fse.h | 264 #define FSE_BUILD_CTABLE_WORKSPACE_SIZE_U32(maxSymbolValue, tableLog) (((maxSymbolValue + 2) + (1ul… argument 265 #define FSE_BUILD_CTABLE_WORKSPACE_SIZE(maxSymbolValue, tableLog) (sizeof(unsigned) * FSE_BUILD_CTA… argument 433 const U32 tableLog = MEM_read16(ptr); in FSE_initCState() local 486 MEM_STATIC U32 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) in FSE_bitCost() 507 U16 tableLog; member
|
| H A D | fse_decompress.c | 59 …Table* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workS… in FSE_buildDTable_internal() 162 …Table* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workS… in FSE_buildDTable_wksp() 252 unsigned tableLog; in FSE_decompress_wksp_body() local
|
| H A D | huf.h | 202 BYTE tableLog; member
|
| H A D | entropy_common.c | 288 { U32 const tableLog = ZSTD_highbit32(weightTotal) + 1; in HUF_readStats_body() local
|
| /freebsd/sys/contrib/zstd/lib/common/ |
| H A D | fse.h | 263 #define FSE_BUILD_CTABLE_WORKSPACE_SIZE_U32(maxSymbolValue, tableLog) (((maxSymbolValue + 2) + (1ul… argument 264 #define FSE_BUILD_CTABLE_WORKSPACE_SIZE(maxSymbolValue, tableLog) (sizeof(unsigned) * FSE_BUILD_CTA… argument 432 const U32 tableLog = MEM_read16(ptr); in FSE_initCState() local 485 MEM_STATIC U32 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) in FSE_bitCost() 506 U16 tableLog; member
|
| H A D | fse_decompress.c | 58 …Table* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workS… in FSE_buildDTable_internal() 161 …Table* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workS… in FSE_buildDTable_wksp() 251 unsigned tableLog; in FSE_decompress_wksp_body() local
|
| H A D | huf.h | 201 BYTE tableLog; member
|
| H A D | entropy_common.c | 287 { U32 const tableLog = ZSTD_highbit32(weightTotal) + 1; in HUF_readStats_body() local
|
| /freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/ |
| H A D | zstd_decompress_block.c | 489 unsigned tableLog, void* wksp, size_t wkspSize) in ZSTD_buildFSETable_body() 610 unsigned tableLog, void* wksp, size_t wkspSize) in ZSTD_buildFSETable_body_default() 620 unsigned tableLog, void* wksp, size_t wkspSize) in ZSTD_buildFSETable_body_bmi2() 630 unsigned tableLog, void* wksp, size_t wkspSize, int bmi2) in ZSTD_buildFSETable() 681 { unsigned tableLog; in ZSTD_buildSeqTable() local 2022 U32 const tableLog = ((const ZSTD_seqSymbol_header*)ptr)[0].tableLog; in ZSTD_getOffsetInfo() local
|
| H A D | huf_decompress.c | 142 typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; member 353 static U32 HUF_rescaleStats(BYTE* huffWeight, U32* rankVal, U32 nbSymbols, U32 tableLog, U32 target… in HUF_rescaleStats() 388 U32 tableLog = 0; in HUF_readDTableX1_wksp() local 1014 U32 nbBits, U32 tableLog, in HUF_fillDTableX2ForWeight() 1184 U32 tableLog, maxW, nbSymbols; in HUF_readDTableX2_wksp() local
|
| H A D | zstd_decompress_internal.h | 65 U32 tableLog; member
|
| /freebsd/sys/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress_block.c | 488 unsigned tableLog, void* wksp, size_t wkspSize) in ZSTD_buildFSETable_body() 609 unsigned tableLog, void* wksp, size_t wkspSize) in ZSTD_buildFSETable_body_default() 619 unsigned tableLog, void* wksp, size_t wkspSize) in ZSTD_buildFSETable_body_bmi2() 629 unsigned tableLog, void* wksp, size_t wkspSize, int bmi2) in ZSTD_buildFSETable() 680 { unsigned tableLog; in ZSTD_buildSeqTable() local 2021 U32 const tableLog = ((const ZSTD_seqSymbol_header*)ptr)[0].tableLog; in ZSTD_getOffsetInfo() local
|
| H A D | huf_decompress.c | 141 typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; member 352 static U32 HUF_rescaleStats(BYTE* huffWeight, U32* rankVal, U32 nbSymbols, U32 tableLog, U32 target… in HUF_rescaleStats() 387 U32 tableLog = 0; in HUF_readDTableX1_wksp() local 1013 U32 nbBits, U32 tableLog, in HUF_fillDTableX2ForWeight() 1183 U32 tableLog, maxW, nbSymbols; in HUF_readDTableX2_wksp() local
|
| /freebsd/sys/contrib/zstd/lib/legacy/ |
| H A D | zstd_v06.c | 1041 U16 tableLog; member 1391 FSEv06_DTable* FSEv06_createDTable (unsigned tableLog) in FSEv06_createDTable() 1402 …able(FSEv06_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) in FSEv06_buildDTable() 1599 unsigned tableLog; in FSEv06_decompress() local 1846 { U32 const tableLog = BITv06_highbit32(weightTotal) + 1; in HUFv06_readStats() local 1952 U32 tableLog = 0; in HUFv06_readDTableX2() local 2279 U32 tableLog, maxW, sizeOfSort, nbSymbols; in HUFv06_readDTableX4() local 3151 { U32 tableLog; in ZSTDv06_buildSeqTable() local
|
| H A D | zstd_v02.c | 639 U16 tableLog; member 1035 (FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) in FSE_buildDTable() 1365 unsigned tableLog; in FSE_decompress() local 1486 U32 tableLog; in HUF_readStats() local 1568 U32 tableLog = 0; in HUF_readDTableX2() local 1874 U32 tableLog, maxW, sizeOfSort, nbSymbols; in HUF_readDTableX4() local 2209 U32 tableLog, maxW, sizeOfSort, nbSymbols; in HUF_readDTableX6() local
|
| H A D | zstd_v03.c | 640 U16 tableLog; member 1035 (FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) in FSE_buildDTable() 1365 unsigned tableLog; in FSE_decompress() local 1482 U32 tableLog; in HUF_readStats() local 1564 U32 tableLog = 0; in HUF_readDTableX2() local 1870 U32 tableLog, maxW, sizeOfSort, nbSymbols; in HUF_readDTableX4() local
|
| H A D | zstd_v07.c | 806 U16 tableLog; member 1299 { U32 const tableLog = BITv07_highbit32(weightTotal) + 1; in HUFv07_readStats() local 1412 FSEv07_DTable* FSEv07_createDTable (unsigned tableLog) in FSEv07_createDTable() 1423 …able(FSEv07_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) in FSEv07_buildDTable() 1620 unsigned tableLog; in FSEv07_decompress() local 1705 typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; member 1725 U32 tableLog = 0; in HUFv07_readDTableX2() local 2087 U32 tableLog, maxW, sizeOfSort, nbSymbols; in HUFv07_readDTableX4() local 3382 { U32 tableLog; in ZSTDv07_buildSeqTable() local
|
| H A D | zstd_v05.c | 939 U16 tableLog; member 1146 FSEv05_DTable* FSEv05_createDTable (unsigned tableLog) in FSEv05_createDTable() 1157 …able(FSEv05_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) in FSEv05_buildDTable() 1460 unsigned tableLog; in FSEv05_decompress() local 1747 U32 tableLog; in HUFv05_readStats() local 1821 U32 tableLog = 0; in HUFv05_readDTableX2() local 2153 U32 tableLog, maxW, sizeOfSort, nbSymbols; in HUFv05_readDTableX4() local
|
| H A D | zstd_v04.c | 819 U16 tableLog; member 1017 …dDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) in FSE_buildDTable() 1353 unsigned tableLog; in FSE_decompress() local 1641 U32 tableLog; in HUF_readStats() local 1723 U32 tableLog = 0; in HUF_readDTableX2() local 2027 U32 tableLog, maxW, sizeOfSort, nbSymbols; in HUF_readDTableX4() local
|