Home
last modified time | relevance | path

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

/third_party/python/Include/
Dlongobject.h236 PyAPI_FUNC(PyObject *) _PyLong_Lshift(PyObject *, size_t);
/third_party/python/Objects/
Dfloatobject.c476 temp = _PyLong_Lshift(ww, 1); in float_richcompare()
482 temp = _PyLong_Lshift(vv, 1); in float_richcompare()
Dlongobject.c4681 _PyLong_Lshift(PyObject *a, size_t shiftby) in _PyLong_Lshift() function
/third_party/python/Modules/
Dmathmodule.c1812 Py_SETREF(a, _PyLong_Lshift(a, d - 1U - e)); in math_isqrt()
2111 result = _PyLong_Lshift(odd_part, two_valuation); in math_factorial()