Lines Matching refs:FSE_DTable

1070 typedef unsigned FSE_DTable;   /* don't allocate that. It's just a way to be more restrictive than …  typedef
1071 FSE_PUBLIC_API FSE_DTable* FSE_createDTable(unsigned tableLog);
1072 FSE_PUBLIC_API void FSE_freeDTable(FSE_DTable* dt);
1077 FSE_PUBLIC_API size_t FSE_buildDTable (FSE_DTable* dt, const short* normalizedCounter, unsigned max…
1084 …singDTable(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt);
1768 …_DTABLE_SIZE(maxTableLog) (FSE_DTABLE_SIZE_U32(maxTableLog) * sizeof(FSE_DTable))
1797 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits);
1800 size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue);
1803 …wksp(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, FSE_DTable* workSpace, unsi…
1885 static void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt);
2045 MEM_STATIC void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt) in FSE_initDState()
2657FSE_DTable fseWorkspace[FSE_DTABLE_SIZE_U32(6)]; /* 6 is max possible tableLog for HUF header (ma… in HUF_readStats()
2811 FSE_DTable* FSE_createDTable (unsigned tableLog) in FSE_createDTable()
2814 return (FSE_DTable*)malloc( FSE_DTABLE_SIZE_U32(tableLog) * sizeof (U32) ); in FSE_createDTable()
2817 void FSE_freeDTable (FSE_DTable* dt) in FSE_freeDTable()
2822 size_t FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, uns… in FSE_buildDTable()
2885 size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle()
2903 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits) in FSE_buildDTable_raw()
2932 const FSE_DTable* dt, const unsigned fast) in FSE_decompress_usingDTable_generic()
2994 const FSE_DTable* dt) in FSE_decompress_usingDTable()
3006 …wksp(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, FSE_DTable* workSpace, unsi… in FSE_decompress_wksp()
3028 typedef FSE_DTable DTable_max_t[FSE_DTABLE_SIZE_U32(FSE_MAX_TABLELOG)];