Lines Matching defs:partial
1353 overflow of the first partial sum.
1409 partials = [] # sorted, non-overlapping partial sums
1426 partial so that the list of partial sums remains exact.
1428 Sum_exact() adds the partial sums exactly and correctly rounds the final
1954 * partial products like (11 * 13 * 15 * 17 * 19) in the example above. It
2032 PyObject *partial, *tmp, *inner, *outer;
2051 partial = factorial_partial_product(lower, upper, _Py_bit_length(upper-2));
2052 /* inner *= partial */
2053 if (partial == NULL)
2055 tmp = PyNumber_Multiply(inner, partial);
2056 Py_DECREF(partial);