Home | History | Annotate | Download | only in compress

Lines Matching defs:cumul

81     U16* cumul = (U16*)workSpace;   /* size = maxSV1 */
82 FSE_FUNCTION_TYPE* const tableSymbol = (FSE_FUNCTION_TYPE*)(cumul + (maxSV1+1)); /* size = tableSize */
102 cumul[0] = 0;
105 cumul[u] = cumul[u-1] + 1;
109 cumul[u] = cumul[u-1] + (U16)normalizedCounter[u-1];
110 assert(cumul[u] >= cumul[u-1]); /* no overflow */
112 cumul[maxSV1] = (U16)(tableSize+1);
172 tableU16[cumul[s]++] = (U16) (tableSize+u); /* TableU16 : sorted by symbol order; gives next state value */