Lines Matching refs:U32
101 U32 const maxSV1 = maxSymbolValue + 1; in FSE_buildDTable_wksp()
102 U32 const tableSize = 1 << tableLog; in FSE_buildDTable_wksp()
103 U32 highThreshold = tableSize - 1; in FSE_buildDTable_wksp()
120 U32 s; in FSE_buildDTable_wksp()
137 U32 const tableMask = tableSize - 1; in FSE_buildDTable_wksp()
138 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable_wksp()
139 U32 s, position = 0; in FSE_buildDTable_wksp()
155 U32 u; in FSE_buildDTable_wksp()
159 tableDecode[u].nbBits = (BYTE)(tableLog - BIT_highbit32((U32)nextState)); in FSE_buildDTable_wksp()
286 const U32 fastMode = DTableH->fastMode; in FSE_decompress_usingDTable()
306 FSE_STATIC_ASSERT(sizeof(FSE_DTable) == sizeof(U32)); in FSE_decompress_wksp()
308 dt = (FSE_DTable *)((U32 *)workspace + spaceUsed32); in FSE_decompress_wksp()
310 counting = (short *)((U32 *)workspace + spaceUsed32); in FSE_decompress_wksp()
311 spaceUsed32 += ALIGN(sizeof(short) * (FSE_MAX_SYMBOL_VALUE + 1), sizeof(U32)) >> 2; in FSE_decompress_wksp()
315 workspace = (U32 *)workspace + spaceUsed32; in FSE_decompress_wksp()