Home
last modified time | relevance | path

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

/third_party/python/Include/
Dabstract.h590 PyAPI_FUNC(PyObject *) PyNumber_InPlaceRemainder(PyObject *o1, PyObject *o2);
/third_party/python/Objects/
Dweakrefobject.c556 WRAP_BINARY(proxy_imod, PyNumber_InPlaceRemainder) in WRAP_BINARY()
Dabstract.c1321 PyNumber_InPlaceRemainder(PyObject *v, PyObject *w) in PyNumber_InPlaceRemainder() function
/third_party/python/Doc/c-api/
Dnumber.rst185 .. c:function:: PyObject* PyNumber_InPlaceRemainder(PyObject *o1, PyObject *o2)
/third_party/python/Doc/data/
Dstable_abi.dat423 function,PyNumber_InPlaceRemainder,3.2,
Drefcounts.dat1480 PyNumber_InPlaceRemainder:PyObject*::+1:
1481 PyNumber_InPlaceRemainder:PyObject*:v:0:
1482 PyNumber_InPlaceRemainder:PyObject*:w:0:
/third_party/python/PC/
Dpython3dll.c400 EXPORT_FUNC(PyNumber_InPlaceRemainder)
/third_party/python/Modules/
D_operator.c379 return PyNumber_InPlaceRemainder(a, b); in _operator_imod_impl()
/third_party/python/Misc/
Dstable_abi.txt964 function PyNumber_InPlaceRemainder
/third_party/python/Python/
Dceval.c2265 PyObject *mod = PyNumber_InPlaceRemainder(left, right); in _PyEval_EvalFrameDefault()