Home
last modified time | relevance | path

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

/third_party/python/Include/
Dlongobject.h214 PyAPI_FUNC(PyObject *) _PyLong_Lshift(PyObject *, size_t);
/third_party/python/Objects/
Dfloatobject.c496 temp = _PyLong_Lshift(ww, 1); in float_richcompare()
502 temp = _PyLong_Lshift(vv, 1); in float_richcompare()
Dlongobject.c4536 _PyLong_Lshift(PyObject *a, size_t shiftby) in _PyLong_Lshift() function
/third_party/python/Modules/
Dmathmodule.c1822 Py_SETREF(a, _PyLong_Lshift(a, d - 1U - e)); in math_isqrt()
2093 result = _PyLong_Lshift(odd_part, two_valuation); in math_factorial()