Searched defs:tableLog (Results 1 - 25 of 25) sorted by relevance

/freebsd-current/sys/contrib/openzfs/module/zstd/lib/common/
H A Dentropy_common.c197 { U32 const tableLog = BIT_highbit32(weightTotal) + 1; local
H A Dfse_decompress.c59 size_t FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
248 unsigned tableLog; local
[all...]
H A Dfse.h492 const U32 tableLog = MEM_read16(ptr); local
545 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) argument
[all...]
/freebsd-current/sys/contrib/zstd/lib/common/
H A Dentropy_common.c315 { U32 const tableLog = BIT_highbit32(weightTotal) + 1; local
H A Dfse.h518 const U32 tableLog = MEM_read16(ptr); local
571 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) argument
[all...]
H A Dfse_decompress.c60 FSE_DTable* FSE_createDTable (unsigned tableLog) argument
71 static size_t FSE_buildDTable_internal(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize) argument
176 FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize) argument
327 unsigned tableLog; local
389 FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
[all...]
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_sequences.c62 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); local
105 unsigned const tableLog = cstate.stateLog; local
250 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); local
[all...]
H A Dhuf_compress.c70 U32 tableLog = MAX_FSE_TABLELOG_FOR_HUFF_HEADER; local
154 U32 tableLog = 0; local
[all...]
H A Dfse_compress.c66 FSE_buildCTable_wksp(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize) argument
172 FSE_buildCTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
186 FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog) argument
193 FSE_writeNCount_generic(void* header, size_t headerBufferSize, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, unsigned writeIsSafe) argument
288 FSE_writeNCount(void* buffer, size_t bufferSize, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
305 FSE_createCTable(unsigned maxSymbolValue, unsigned tableLog) argument
328 U32 tableLog = maxTableLog; local
348 FSE_normalizeM2(short* norm, U32 tableLog, const unsigned* count, size_t total, U32 maxSymbolValue) argument
435 FSE_normalizeCount(short* normalizedCounter, unsigned tableLog, const unsigned* count, size_t total, unsigned maxSymbolValue) argument
632 FSE_compress_wksp(void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize) argument
684 FSE_compress2(void* dst, size_t dstCapacity, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog) argument
[all...]
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress_internal.h64 U32 tableLog; member in struct:__anon214
H A Dhuf_decompress.c101 typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; member in struct:__anon204
120 U32 tableLog = 0; local
555 U32 tableLog, maxW, sizeOfSort, nbSymbols; local
[all...]
H A Dzstd_decompress_block.c368 ZSTD_buildFSETable(ZSTD_seqSymbol* dt, const short* normalizedCounter, unsigned maxSymbolValue, const U32* baseValue, const U32* nbAdditionalBits, unsigned tableLog) argument
465 { unsigned tableLog; local
1328 U32 const tableLog = ((const ZSTD_seqSymbol_header*)ptr)[0].tableLog; local
[all...]
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_sequences.c75 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); local
120 unsigned const tableLog = cstate.stateLog; local
270 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); local
[all...]
H A Dfse_compress.c67 FSE_buildCTable_wksp(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize) argument
222 FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog) argument
233 FSE_writeNCount_generic(void* header, size_t headerBufferSize, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, unsigned writeIsSafe) argument
328 FSE_writeNCount(void* buffer, size_t bufferSize, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
345 FSE_createCTable(unsigned maxSymbolValue, unsigned tableLog) argument
368 U32 tableLog = maxTableLog; local
387 FSE_normalizeM2(short* norm, U32 tableLog, const unsigned* count, size_t total, U32 maxSymbolValue, short lowProbCount) argument
473 FSE_normalizeCount(short* normalizedCounter, unsigned tableLog, const unsigned* count, size_t total, unsigned maxSymbolValue, unsigned useLowProbCount) argument
672 FSE_compress_wksp(void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize) argument
727 FSE_compress2(void* dst, size_t dstCapacity, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog) argument
[all...]
H A Dhuf_compress.c99 U32 tableLog = MAX_FSE_TABLELOG_FOR_HUFF_HEADER; local
225 U32 tableLog = 0; local
959 HUF_tightCompressBound(size_t srcSize, size_t tableLog) argument
970 U32 const tableLog = (U32)CTable[0]; local
[all...]
/freebsd-current/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress_internal.h64 U32 tableLog; member in struct:__anon136
H A Dhuf_decompress.c132 typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; member in struct:__anon123
303 static U32 HUF_rescaleStats(BYTE* huffWeight, U32* rankVal, U32 nbSymbols, U32 tableLog, U32 targetTableLog) argument
344 U32 tableLog = 0; local
876 HUF_fillDTableX2ForWeight( HUF_DEltX2* DTableRank, sortedSymbol_t const* begin, sortedSymbol_t const* end, U32 nbBits, U32 tableLog, U16 baseSeq, int const level) argument
1056 U32 tableLog, maxW, nbSymbols; local
[all...]
H A Dzstd_decompress_block.c444 ZSTD_buildFSETable_body(ZSTD_seqSymbol* dt, const short* normalizedCounter, unsigned maxSymbolValue, const U32* baseValue, const U8* nbAdditionalBits, unsigned tableLog, void* wksp, size_t wkspSize) argument
564 ZSTD_buildFSETable_body_default(ZSTD_seqSymbol* dt, const short* normalizedCounter, unsigned maxSymbolValue, const U32* baseValue, const U8* nbAdditionalBits, unsigned tableLog, void* wksp, size_t wkspSize) argument
574 ZSTD_buildFSETable_body_bmi2(ZSTD_seqSymbol* dt, const short* normalizedCounter, unsigned maxSymbolValue, const U32* baseValue, const U8* nbAdditionalBits, unsigned tableLog, void* wksp, size_t wkspSize) argument
584 ZSTD_buildFSETable(ZSTD_seqSymbol* dt, const short* normalizedCounter, unsigned maxSymbolValue, const U32* baseValue, const U8* nbAdditionalBits, unsigned tableLog, void* wksp, size_t wkspSize, int bmi2) argument
638 { unsigned tableLog; local
1959 U32 const tableLog = ((const ZSTD_seqSymbol_header*)ptr)[0].tableLog; local
[all...]
/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c391 U16 tableLog; member in struct:__anon165
395 FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
903 unsigned tableLog; local
[all...]
H A Dzstd_v06.c1097 U16 tableLog; member in struct:__anon258
1447 FSEv06_DTable* FSEv06_createDTable (unsigned tableLog) argument
1458 FSEv06_buildDTable(FSEv06_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
1655 unsigned tableLog; local
1902 { U32 const tableLog = BITv06_highbit32(weightTotal) + 1; local
2008 U32 tableLog = 0; local
2335 U32 tableLog, maxW, sizeOfSort, nbSymbols; local
3207 { U32 tableLog; local
[all...]
H A Dzstd_v05.c991 U16 tableLog; member in struct:__anon235
1198 FSEv05_DTable* FSEv05_createDTable (unsigned tableLog) argument
1209 size_t FSEv05_buildDTable(FSEv05_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
1512 unsigned tableLog; local
1799 U32 tableLog; local
1873 U32 tableLog = 0; local
2205 U32 tableLog, maxW, sizeOfSort, nbSymbols; local
[all...]
H A Dzstd_v04.c875 U16 tableLog; member in struct:__anon217
1073 static size_t FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
1409 unsigned tableLog; local
1697 U32 tableLog; local
1779 U32 tableLog = 0; local
2083 U32 tableLog, maxW, sizeOfSort, nbSymbols; local
[all...]
H A Dzstd_v03.c702 U16 tableLog; member in struct:__anon198
1096 FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
1427 unsigned tableLog; local
1544 U32 tableLog; local
1626 U32 tableLog = 0; local
1932 U32 tableLog, maxW, sizeOfSort, nbSymbols; local
[all...]
H A Dzstd_v02.c700 U16 tableLog; member in struct:__anon179
1095 FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
1426 unsigned tableLog; local
1547 U32 tableLog; local
1629 U32 tableLog = 0; local
1935 U32 tableLog, maxW, sizeOfSort, nbSymbols; local
2270 U32 tableLog, maxW, sizeOfSort, nbSymbols; local
[all...]
H A Dzstd_v07.c861 U16 tableLog; member in struct:__anon275
1354 { U32 const tableLog local
1467 FSEv07_createDTable(unsigned tableLog) argument
1478 FSEv07_buildDTable(FSEv07_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) argument
1675 unsigned tableLog; local
1760 typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; member in struct:__anon277
1780 U32 tableLog = 0; local
2142 U32 tableLog, maxW, sizeOfSort, nbSymbols; local
3437 { U32 tableLog; local
[all...]

Completed in 271 milliseconds