Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dmathmodule.c2065 PyObject *result, *odd_part; in math_factorial() local
2089 odd_part = factorial_odd_part(x); in math_factorial()
2090 if (odd_part == NULL) in math_factorial()
2093 result = _PyLong_Lshift(odd_part, two_valuation); in math_factorial()
2094 Py_DECREF(odd_part); in math_factorial()