Searched refs:long_mul (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/serde_json/src/lexical/ |
D | math.rs | 671 fn long_mul(x: &[Limb], y: &[Limb]) -> Vec<Limb> { in long_mul() function 702 long_mul(x, y) in karatsuba_mul()
|
/external/python/cpython3/Objects/ |
D | longobject.c | 3659 long_mul(PyLongObject *a, PyLongObject *b) in long_mul() function 4181 t = (PyLongObject *)long_mul(q, c); in long_invmod() 4360 temp = (PyLongObject *)long_mul(X, Y); \ in long_pow() 5400 y = (PyLongObject *)long_mul(result, x); in int_bit_length_impl() 5637 (binaryfunc)long_mul, /*nb_multiply*/
|
/external/python/cpython2/Objects/ |
D | longobject.c | 2974 long_mul(PyLongObject *v, PyLongObject *w) in long_mul() function 3520 temp = (PyLongObject *)long_mul(X, Y); \ in long_pow() 4180 y = (PyLongObject *)long_mul(result, x); in long_bit_length() 4277 (binaryfunc)long_mul, /*nb_multiply*/
|