Lines Matching refs:dt

66 void FSE_freeDTable (FSE_DTable* dt)  in FSE_freeDTable()  argument
68 ZSTD_free(dt); in FSE_freeDTable()
71 static size_t FSE_buildDTable_internal(FSE_DTable* dt, const short* normalizedCounter, unsigned max… in FSE_buildDTable_internal() argument
73 void* const tdPtr = dt+1; /* because *dt is unsigned, 32-bits aligned on 32-bits */ in FSE_buildDTable_internal()
101 ZSTD_memcpy(dt, &DTableH, sizeof(DTableH)); in FSE_buildDTable_internal()
176 size_t FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue… in FSE_buildDTable_wksp() argument
178 …return FSE_buildDTable_internal(dt, normalizedCounter, maxSymbolValue, tableLog, workSpace, wkspSi… in FSE_buildDTable_wksp()
187 size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() argument
189 void* ptr = dt; in FSE_buildDTable_rle()
191 void* dPtr = dt + 1; in FSE_buildDTable_rle()
205 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits) in FSE_buildDTable_raw() argument
207 void* ptr = dt; in FSE_buildDTable_raw()
209 void* dPtr = dt + 1; in FSE_buildDTable_raw()
234 const FSE_DTable* dt, const unsigned fast) in FSE_decompress_usingDTable_generic() argument
248 FSE_initDState(&state1, &bitD, dt); in FSE_decompress_usingDTable_generic()
249 FSE_initDState(&state2, &bitD, dt); in FSE_decompress_usingDTable_generic()
296 const FSE_DTable* dt) in FSE_decompress_usingDTable() argument
298 const void* ptr = dt; in FSE_decompress_usingDTable()
303 … if (fastMode) return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 1); in FSE_decompress_usingDTable()
304 return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 0); in FSE_decompress_usingDTable()