Home
last modified time | relevance | path

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

/third_party/python/Objects/
H A Dlongobject.c3455 /* A helper for Karatsuba multiplication (k_mul).
3497 k_mul(PyLongObject *a, PyLongObject *b) in k_mul() function
3544 * leads to a sequence of balanced calls to k_mul. in k_mul()
3587 if ((t1 = k_mul(ah, bh)) == NULL) goto fail; in k_mul()
3600 if ((t2 = k_mul(al, bl)) == NULL) { in k_mul()
3641 t3 = k_mul(t1, t2); in k_mul()
3712 * one at a time. This gives k_mul balanced inputs to work with, and is
3749 product = k_mul(a, bslice); in k_lopsided_mul()
3782 z = k_mul(a, b); in _PyLong_Multiply()

Completed in 12 milliseconds