Lines Matching refs:tableLog
77 FSE_PUBLIC_API size_t FSE_normalizeCount(short *normalizedCounter, unsigned tableLog, const unsigne…
82 FSE_PUBLIC_API size_t FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog);
88 …er, size_t bufferSize, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog);
160 … *dt, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workspace,…
246 … *ct, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workSpace,…
401 const U32 tableLog = ZSTD_read16(ptr); in FSE_initCState() local
402 statePtr->value = (ptrdiff_t)1 << tableLog; in FSE_initCState()
404 statePtr->symbolTT = ((const U32 *)ct + 1 + (tableLog ? (1 << (tableLog - 1)) : 1)); in FSE_initCState()
405 statePtr->stateLog = tableLog; in FSE_initCState()
441 U16 tableLog; member
455 DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog); in FSE_initDState()