Lines Matching refs:u
102 { U32 u; in FSE_buildCTable_wksp() local
104 for (u=1; u <= maxSV1; u++) { in FSE_buildCTable_wksp()
105 if (normalizedCounter[u-1]==-1) { /* Low proba symbol */ in FSE_buildCTable_wksp()
106 cumul[u] = cumul[u-1] + 1; in FSE_buildCTable_wksp()
107 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1); in FSE_buildCTable_wksp()
109 assert(normalizedCounter[u-1] >= 0); in FSE_buildCTable_wksp()
110 cumul[u] = cumul[u-1] + (U16)normalizedCounter[u-1]; in FSE_buildCTable_wksp()
111 assert(cumul[u] >= cumul[u-1]); /* no overflow */ in FSE_buildCTable_wksp()
146 size_t u; in FSE_buildCTable_wksp() local
147 for (u = 0; u < unroll; ++u) { in FSE_buildCTable_wksp()
148 size_t const uPosition = (position + (u * step)) & tableMask; in FSE_buildCTable_wksp()
149 tableSymbol[uPosition] = spread[s + u]; in FSE_buildCTable_wksp()
171 { U32 u; for (u=0; u<tableSize; u++) { in FSE_buildCTable_wksp() local
172 …FSE_FUNCTION_TYPE s = tableSymbol[u]; /* note : static analyzer may not understand tableSymbol i… in FSE_buildCTable_wksp()
173 …tableU16[cumul[s]++] = (U16) (tableSize+u); /* TableU16 : sorted by symbol order; gives next sta… in FSE_buildCTable_wksp()