Lines Matching refs:got
206 big_t got; /* value returned from count() */ in count() local
221 got = num[index]; in count()
222 if (got) in count()
223 return got; /* we have -- return the saved result */ in count()
240 got = count(syms - use, len + 1, (left - use) << 1); in count()
241 sum += got; in count()
242 if (got == (big_t)0 - 1 || sum < got) /* overflow */ in count()
462 big_t got; /* return value of count() */ in main() local
536 got = count(n, 1, 2); in main()
537 sum += got; in main()
538 if (got == (big_t)0 - 1 || sum < got) { /* overflow */ in main()
543 printf("%llu %d-codes\n", got, n); in main()