Home
last modified time | relevance | path

Searched refs:two_valuation (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Modules/
Dmathmodule.c1659 PyObject *result, *odd_part, *two_valuation; in math_factorial() local
1702 two_valuation = PyLong_FromLong(x - count_set_bits(x)); in math_factorial()
1703 if (two_valuation == NULL) { in math_factorial()
1707 result = PyNumber_Lshift(odd_part, two_valuation); in math_factorial()
1708 Py_DECREF(two_valuation); in math_factorial()