Home | History | Annotate | Download | only in Objects

Lines Matching refs:k_mul

3254 /* A helper for Karatsuba multiplication (k_mul).
3296 k_mul(PyLongObject *a, PyLongObject *b)
3343 * leads to a sequence of balanced calls to k_mul.
3386 if ((t1 = k_mul(ah, bh)) == NULL) goto fail;
3399 if ((t2 = k_mul(al, bl)) == NULL) {
3440 t3 = k_mul(t1, t2);
3511 * one at a time. This gives k_mul balanced inputs to work with, and is
3548 product = k_mul(a, bslice);
3583 z = k_mul(a, b);