Lines Matching full:dt

95 size_t FSE_buildDTable_wksp(FSE_DTable *dt, const short *normalizedCounter, unsigned maxSymbolValue…  in FSE_buildDTable_wksp()  argument
97 void *const tdPtr = dt + 1; /* because *dt is unsigned, 32-bits aligned on 32-bits */ in FSE_buildDTable_wksp()
132 memcpy(dt, &DTableH, sizeof(DTableH)); in FSE_buildDTable_wksp()
170 size_t FSE_buildDTable_rle(FSE_DTable *dt, BYTE symbolValue) in FSE_buildDTable_rle() argument
172 void *ptr = dt; in FSE_buildDTable_rle()
174 void *dPtr = dt + 1; in FSE_buildDTable_rle()
187 size_t FSE_buildDTable_raw(FSE_DTable *dt, unsigned nbBits) in FSE_buildDTable_raw() argument
189 void *ptr = dt; in FSE_buildDTable_raw()
191 void *dPtr = dt + 1; in FSE_buildDTable_raw()
214 …able_generic(void *dst, size_t maxDstSize, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt, in FSE_decompress_usingDTable_generic() argument
229 FSE_initDState(&state1, &bitD, dt); in FSE_decompress_usingDTable_generic()
230 FSE_initDState(&state2, &bitD, dt); in FSE_decompress_usingDTable_generic()
282 …singDTable(void *dst, size_t originalSize, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt) in FSE_decompress_usingDTable() argument
284 const void *ptr = dt; in FSE_decompress_usingDTable()
290 return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 1); in FSE_decompress_usingDTable()
291 return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 0); in FSE_decompress_usingDTable()
302 FSE_DTable *dt; in FSE_decompress_wksp() local
308 dt = (FSE_DTable *)((U32 *)workspace + spaceUsed32); in FSE_decompress_wksp()
329 CHECK_F(FSE_buildDTable_wksp(dt, counting, maxSymbolValue, tableLog, workspace, workspaceSize)); in FSE_decompress_wksp()
331 …return FSE_decompress_usingDTable(dst, dstCapacity, ip, cSrcSize, dt); /* always return, even if i… in FSE_decompress_wksp()