Lines Matching refs:ct
165 FSE_PUBLIC_API void FSE_freeCTable (FSE_CTable* ct);
170 FSE_PUBLIC_API size_t FSE_buildCTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxS…
177 …usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const FSE_CTable* ct);
327 size_t FSE_buildCTable_raw (FSE_CTable* ct, unsigned nbBits);
330 size_t FSE_buildCTable_rle (FSE_CTable* ct, unsigned char symbolValue);
339 size_t FSE_buildCTable_wksp(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue…
380 static void FSE_initCState(FSE_CState_t* CStatePtr, const FSE_CTable* ct);
510 MEM_STATIC void FSE_initCState(FSE_CState_t* statePtr, const FSE_CTable* ct) in FSE_initCState() argument
512 const void* ptr = ct; in FSE_initCState()
517 statePtr->symbolTT = ct + 1 + (tableLog ? (1<<(tableLog-1)) : 1); in FSE_initCState()
525 MEM_STATIC void FSE_initCState2(FSE_CState_t* statePtr, const FSE_CTable* ct, U32 symbol) in FSE_initCState2() argument
527 FSE_initCState(statePtr, ct); in FSE_initCState2()