• Home
  • Raw
  • Download

Lines Matching full:dt

88 size_t FSE_buildDTable_wksp(FSE_DTable *dt, const short *normalizedCounter, unsigned maxSymbolValue…  in FSE_buildDTable_wksp()  argument
90 void *const tdPtr = dt + 1; /* because *dt is unsigned, 32-bits aligned on 32-bits */ in FSE_buildDTable_wksp()
125 memcpy(dt, &DTableH, sizeof(DTableH)); in FSE_buildDTable_wksp()
163 size_t FSE_buildDTable_rle(FSE_DTable *dt, BYTE symbolValue) in FSE_buildDTable_rle() argument
165 void *ptr = dt; in FSE_buildDTable_rle()
167 void *dPtr = dt + 1; in FSE_buildDTable_rle()
180 size_t FSE_buildDTable_raw(FSE_DTable *dt, unsigned nbBits) in FSE_buildDTable_raw() argument
182 void *ptr = dt; in FSE_buildDTable_raw()
184 void *dPtr = dt + 1; in FSE_buildDTable_raw()
207 …able_generic(void *dst, size_t maxDstSize, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt, in FSE_decompress_usingDTable_generic() argument
222 FSE_initDState(&state1, &bitD, dt); in FSE_decompress_usingDTable_generic()
223 FSE_initDState(&state2, &bitD, dt); in FSE_decompress_usingDTable_generic()
275 …singDTable(void *dst, size_t originalSize, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt) in FSE_decompress_usingDTable() argument
277 const void *ptr = dt; in FSE_decompress_usingDTable()
283 return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 1); in FSE_decompress_usingDTable()
284 return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 0); in FSE_decompress_usingDTable()
295 FSE_DTable *dt; in FSE_decompress_wksp() local
301 dt = (FSE_DTable *)((U32 *)workspace + spaceUsed32); in FSE_decompress_wksp()
322 CHECK_F(FSE_buildDTable_wksp(dt, counting, maxSymbolValue, tableLog, workspace, workspaceSize)); in FSE_decompress_wksp()
324 …return FSE_decompress_usingDTable(dst, dstCapacity, ip, cSrcSize, dt); /* always return, even if i… in FSE_decompress_wksp()