Lines Matching refs:Choose
1866 /// Compute the result of "n choose k", the binomial coefficient. If an
1869 static uint64_t Choose(uint64_t n, uint64_t k, bool &Overflow) {
2072 // choose(x, 2x)*choose(2x-y, x-z)*A_{y-z}*B_z
2074 // Note that the arguments to choose() are always integers with values
2096 uint64_t Coeff1 = Choose(x, 2*x - y, Overflow);
2100 uint64_t Coeff2 = Choose(2*x - y, x-z, Overflow);
4614 // Choose the less conservative count.
4652 // Choose the less conservative count.