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

/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c2655 /* A helper for Karatsuba multiplication (k_mul).
2697 k_mul(PyLongObject *a, PyLongObject *b) function
2744 * leads to a sequence of balanced calls to k_mul.
2787 if ((t1 = k_mul(ah, bh)) == NULL) goto fail;
2800 if ((t2 = k_mul(al, bl)) == NULL) {
2841 t3 = k_mul(t1, t2);
2912 * one at a time. This gives k_mul balanced inputs to work with, and is
2949 product = k_mul(a, bslice);
2981 z = k_mul(a, b);

Completed in 66 milliseconds