Lines Matching defs:big_t
89 program will abort if an overflow occurs. The big_t type identifies where
107 typedef unsigned long long big_t; /* type for code counting */
142 has 284,284 entries, taking up 2.17 MB for an 8-byte big_t. More than
172 local big_t *num; /* saved results array for code counting */
200 local big_t count(int syms, int len, int left)
202 big_t sum; /* number of possible codes from this juncture */
203 big_t got; /* value returned from count() */
450 This uses the %llu printf format to print big_t numbers, which assumes that
451 big_t is an unsigned long long. If the big_t type is changed (for example
459 big_t got; /* return value of count() */
460 big_t sum; /* accumulated number of codes over n */
522 (size *= n, size > ((size_t)0 - 1) / sizeof(big_t)) ||
523 (num = calloc(size, sizeof(big_t))) == NULL) {