Searched refs:k_mul (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
H A Dlongobject.c2657 /* A helper for Karatsuba multiplication (k_mul).
2699 k_mul(PyLongObject *a, PyLongObject *b) function
2746 * leads to a sequence of balanced calls to k_mul.
2789 if ((t1 = k_mul(ah, bh)) == NULL) goto fail;
2802 if ((t2 = k_mul(al, bl)) == NULL) {
2843 t3 = k_mul(t1, t2);
2914 * one at a time. This gives k_mul balanced inputs to work with, and is
2951 product = k_mul(a, bslice);
2983 z = k_mul(a, b);
/external/python/cpython3/Objects/
H A Dlongobject.c3254 /* A helper for Karatsuba multiplication (k_mul).
3296 k_mul(PyLongObject *a, PyLongObject *b) function
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);

Completed in 159 milliseconds