Searched refs:statePtr (Results 1 – 3 of 3) sorted by relevance
429 MEM_STATIC void FSE_initCState(FSE_CState_t* statePtr, const FSE_CTable* ct) in FSE_initCState() argument434 statePtr->value = (ptrdiff_t)1<<tableLog; in FSE_initCState()435 statePtr->stateTable = u16ptr+2; in FSE_initCState()436 statePtr->symbolTT = ct + 1 + (tableLog ? (1<<(tableLog-1)) : 1); in FSE_initCState()437 statePtr->stateLog = tableLog; in FSE_initCState()444 MEM_STATIC void FSE_initCState2(FSE_CState_t* statePtr, const FSE_CTable* ct, U32 symbol) in FSE_initCState2() argument446 FSE_initCState(statePtr, ct); in FSE_initCState2()447 …ompressionTransform symbolTT = ((const FSE_symbolCompressionTransform*)(statePtr->symbolTT))[symbo… in FSE_initCState2()448 const U16* stateTable = (const U16*)(statePtr->stateTable); in FSE_initCState2()450 statePtr->value = (nbBitsOut << 16) - symbolTT.deltaNbBits; in FSE_initCState2()[all …]
196 #define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(sta… in FSE_decompress_usingDTable_generic() argument
227 void xxh64_reset(struct xxh64_state *statePtr, const uint64_t seed) in xxh64_reset() argument237 memcpy(statePtr, &state, sizeof(state)); in xxh64_reset()