Lines Matching defs:cumul
80 U16* cumul = (U16*)workSpace; /* size = maxSV1 */
81 FSE_FUNCTION_TYPE* const tableSymbol = (FSE_FUNCTION_TYPE*)(cumul + (maxSV1+1)); /* size = tableSize */
101 cumul[0] = 0;
104 cumul[u] = cumul[u-1] + 1;
108 cumul[u] = cumul[u-1] + (U16)normalizedCounter[u-1];
109 assert(cumul[u] >= cumul[u-1]); /* no overflow */
111 cumul[maxSV1] = (U16)(tableSize+1);
171 tableU16[cumul[s]++] = (U16) (tableSize+u); /* TableU16 : sorted by symbol order; gives next state value */