Searched refs:accuracyLog (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
H A D | fse.h | 545 MEM_STATIC U32 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) in FSE_bitCost() argument 551 assert(accuracyLog < 31-tableLog); /* ensure enough room for renormalization double shift */ in FSE_bitCost() 554 …U32 const normalizedDeltaFromThreshold = (deltaFromThreshold << accuracyLog) >> tableLog; /* lin… in FSE_bitCost() 555 U32 const bitMultiplier = 1 << accuracyLog; in FSE_bitCost()
|
/freebsd/sys/contrib/zstd/lib/common/ |
H A D | fse.h | 571 MEM_STATIC U32 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) in FSE_bitCost() argument 577 assert(accuracyLog < 31-tableLog); /* ensure enough room for renormalization double shift */ in FSE_bitCost() 580 …U32 const normalizedDeltaFromThreshold = (deltaFromThreshold << accuracyLog) >> tableLog; /* lin… in FSE_bitCost() 581 U32 const bitMultiplier = 1 << accuracyLog; in FSE_bitCost()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | zstd_compress_sequences.c | 124 size_t ZSTD_crossEntropyCost(short const* norm, unsigned accuracyLog, in ZSTD_crossEntropyCost() argument 127 unsigned const shift = 8 - accuracyLog; in ZSTD_crossEntropyCost() 130 assert(accuracyLog <= 8); in ZSTD_crossEntropyCost()
|
H A D | zstd_compress_sequences.h | 52 size_t ZSTD_crossEntropyCost(short const* norm, unsigned accuracyLog,
|
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | zstd_compress_sequences.h | 52 size_t ZSTD_crossEntropyCost(short const* norm, unsigned accuracyLog,
|
H A D | zstd_compress_sequences.c | 139 size_t ZSTD_crossEntropyCost(short const* norm, unsigned accuracyLog, in ZSTD_crossEntropyCost() argument 142 unsigned const shift = 8 - accuracyLog; in ZSTD_crossEntropyCost() 145 assert(accuracyLog <= 8); in ZSTD_crossEntropyCost()
|