Lines Matching refs:U32
264 …Log) (((maxSymbolValue + 2) + (1ull << (tableLog)))/2 + sizeof(U64)/sizeof(U32) /* additional 8 by…
426 U32 deltaNbBits;
433 const U32 tableLog = MEM_read16(ptr); in FSE_initCState()
444 MEM_STATIC void FSE_initCState2(FSE_CState_t* statePtr, const FSE_CTable* ct, U32 symbol) in FSE_initCState2()
449 U32 nbBitsOut = (U32)((symbolTT.deltaNbBits + (1<<15)) >> 16); in FSE_initCState2()
459 U32 const nbBitsOut = (U32)((statePtr->value + symbolTT.deltaNbBits) >> 16); in FSE_encodeSymbol()
476 MEM_STATIC U32 FSE_getMaxNbBits(const void* symbolTTPtr, U32 symbolValue) in FSE_getMaxNbBits()
486 MEM_STATIC U32 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) in FSE_bitCost()
489 U32 const minNbBits = symbolTT[symbolValue].deltaNbBits >> 16; in FSE_bitCost()
490 U32 const threshold = (minNbBits+1) << 16; in FSE_bitCost()
493 { U32 const tableSize = 1 << tableLog; in FSE_bitCost()
494 U32 const deltaFromThreshold = threshold - (symbolTT[symbolValue].deltaNbBits + tableSize); in FSE_bitCost()
495 …U32 const normalizedDeltaFromThreshold = (deltaFromThreshold << accuracyLog) >> tableLog; /* lin… in FSE_bitCost()
496 U32 const bitMultiplier = 1 << accuracyLog; in FSE_bitCost()
536 U32 const nbBits = DInfo.nbBits; in FSE_updateState()
544 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbol()
557 U32 const nbBits = DInfo.nbBits; in FSE_decodeSymbolFast()