Home
last modified time | relevance | path

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

/third_party/python/Include/
Dabstract.h576 PyAPI_FUNC(PyObject *) PyNumber_InPlaceFloorDivide(PyObject *o1,
/third_party/python/Objects/
Dweakrefobject.c554 WRAP_BINARY(proxy_ifloor_div, PyNumber_InPlaceFloorDivide) in WRAP_BINARY()
Dabstract.c1248 PyNumber_InPlaceFloorDivide(PyObject *v, PyObject *w) in PyNumber_InPlaceFloorDivide() function
/third_party/python/Doc/c-api/
Dnumber.rst169 .. c:function:: PyObject* PyNumber_InPlaceFloorDivide(PyObject *o1, PyObject *o2)
/third_party/python/PC/
Dpython3dll.c394 EXPORT_FUNC(PyNumber_InPlaceFloorDivide)
/third_party/python/Doc/data/
Dstable_abi.dat417 function,PyNumber_InPlaceFloorDivide,3.2,
Drefcounts.dat1455 PyNumber_InPlaceFloorDivide:PyObject*::+1:
1456 PyNumber_InPlaceFloorDivide:PyObject*:v:0:
1457 PyNumber_InPlaceFloorDivide:PyObject*:w:0:
/third_party/python/Modules/
D_operator.c353 return PyNumber_InPlaceFloorDivide(a, b); in _operator_ifloordiv_impl()
/third_party/python/Misc/
Dstable_abi.txt954 function PyNumber_InPlaceFloorDivide
/third_party/python/Python/
Dceval.c2253 PyObject *quotient = PyNumber_InPlaceFloorDivide(dividend, divisor); in _PyEval_EvalFrameDefault()