Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dabstract.h969 PyAPI_FUNC(PyObject *) PyNumber_InPlaceRemainder(PyObject *o1, PyObject *o2);
/external/python/cpython3/Include/
Dabstract.h785 PyAPI_FUNC(PyObject *) PyNumber_InPlaceRemainder(PyObject *o1, PyObject *o2);
/external/python/cpython3/PC/
Dpython3.def397 PyNumber_InPlaceRemainder=python37.PyNumber_InPlaceRemainder
/external/python/cpython2/Doc/data/
Drefcounts.dat838 PyNumber_InPlaceRemainder:PyObject*::+1:
839 PyNumber_InPlaceRemainder:PyObject*:v:0:
840 PyNumber_InPlaceRemainder:PyObject*:w:0:
/external/python/cpython3/Objects/
Dweakrefobject.c520 WRAP_BINARY(proxy_imod, PyNumber_InPlaceRemainder) in WRAP_BINARY()
Dabstract.c1165 PyNumber_InPlaceRemainder(PyObject *v, PyObject *w) in PyNumber_InPlaceRemainder() function
/external/python/cpython2/Objects/
Dweakrefobject.c521 WRAP_BINARY(proxy_imod, PyNumber_InPlaceRemainder) in WRAP_BINARY()
Dclassobject.c1657 BINARY_INPLACE(instance_imod, "mod", PyNumber_InPlaceRemainder)
Dabstract.c1389 PyNumber_InPlaceRemainder(PyObject *v, PyObject *w) function
/external/python/cpython3/Doc/c-api/
Dnumber.rst182 .. c:function:: PyObject* PyNumber_InPlaceRemainder(PyObject *o1, PyObject *o2)
/external/python/cpython2/Modules/
Doperator.c114 spam2(op_imod , PyNumber_InPlaceRemainder) in spami()
/external/python/cpython2/PC/os2emx/
Dpython27.def153 "PyNumber_InPlaceRemainder"
/external/python/cpython2/Doc/c-api/
Dnumber.rst186 .. c:function:: PyObject* PyNumber_InPlaceRemainder(PyObject *o1, PyObject *o2)
/external/python/cpython3/Modules/
D_operator.c366 return PyNumber_InPlaceRemainder(a, b); in _operator_imod_impl()
/external/python/cpython3/Doc/data/
Drefcounts.dat1449 PyNumber_InPlaceRemainder:PyObject*::+1:
1450 PyNumber_InPlaceRemainder:PyObject*:v:0:
1451 PyNumber_InPlaceRemainder:PyObject*:w:0:
/external/python/cpython3/Python/
Dceval.c1469 PyObject *mod = PyNumber_InPlaceRemainder(left, right); in _PyEval_EvalFrameDefault()
/external/python/cpython2/Python/
Dceval.c1712 x = PyNumber_InPlaceRemainder(v, w); in PyEval_EvalFrameEx()