Lines Matching refs:tableLog

96 … dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog);
138 FSE_PUBLIC_API size_t FSE_normalizeCount(short* normalizedCounter, unsigned tableLog,
144 FSE_PUBLIC_API size_t FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog);
152 unsigned maxSymbolValue, unsigned tableLog);
157 FSE_PUBLIC_API FSE_CTable* FSE_createCTable (unsigned maxSymbolValue, unsigned tableLog);
163 …CTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog);
236 FSE_PUBLIC_API FSE_DTable* FSE_createDTable(unsigned tableLog);
242 …Table (FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog);
315 …ize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog, void* workSpace,…
328 …E_BUILD_CTABLE_WORKSPACE_SIZE_U32(maxSymbolValue, tableLog) (((maxSymbolValue + 2) + (1ull << (tab… argument
329 …WORKSPACE_SIZE(maxSymbolValue, tableLog) (sizeof(unsigned) * FSE_BUILD_CTABLE_WORKSPACE_SIZE_U32(m… argument
330 …* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace,…
334 …* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace,…
500 const U32 tableLog = MEM_read16(ptr); in FSE_initCState() local
501 statePtr->value = (ptrdiff_t)1<<tableLog; in FSE_initCState()
503 statePtr->symbolTT = ct + 1 + (tableLog ? (1<<(tableLog-1)) : 1); in FSE_initCState()
504 statePtr->stateLog = tableLog; in FSE_initCState()
551 MEM_STATIC U32 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) in FSE_bitCost() argument
556 assert(tableLog < 16); in FSE_bitCost()
557 assert(accuracyLog < 31-tableLog); /* ensure enough room for renormalization double shift */ in FSE_bitCost()
558 { U32 const tableSize = 1 << tableLog; in FSE_bitCost()
560 …U32 const normalizedDeltaFromThreshold = (deltaFromThreshold << accuracyLog) >> tableLog; /* lin… in FSE_bitCost()
571 U16 tableLog; member
586 DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog); in FSE_initDState()