Lines Matching defs:sum
202 big_t sum; /* number of possible codes from this juncture */
235 sum = 0;
238 sum += got;
239 if (got == -1 || sum < got) /* overflow */
244 assert(sum != 0);
247 num[index] = sum;
248 return sum;
460 big_t sum; /* accumulated number of codes over n */
531 sum = 0;
534 sum += got;
535 if (got == -1 || sum < got) { /* overflow */
542 printf("%llu total codes for 2 to %d symbols", sum, syms);