Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dabstract.h929 PyAPI_FUNC(PyObject *) PyNumber_InPlaceMultiply(PyObject *o1, PyObject *o2);
/external/python/cpython3/Include/
Dabstract.h760 PyAPI_FUNC(PyObject *) PyNumber_InPlaceMultiply(PyObject *o1, PyObject *o2);
/external/python/cpython3/PC/
Dpython3.def394 PyNumber_InPlaceMultiply=python37.PyNumber_InPlaceMultiply
/external/python/cpython2/Doc/data/
Drefcounts.dat825 PyNumber_InPlaceMultiply:PyObject*::+1:
826 PyNumber_InPlaceMultiply:PyObject*:v:0:
827 PyNumber_InPlaceMultiply:PyObject*:w:0:
/external/python/cpython3/Objects/
Dweakrefobject.c517 WRAP_BINARY(proxy_imul, PyNumber_InPlaceMultiply) in WRAP_BINARY()
Dabstract.c1129 PyNumber_InPlaceMultiply(PyObject *v, PyObject *w) in PyNumber_InPlaceMultiply() function
/external/python/cpython2/Objects/
Dweakrefobject.c517 WRAP_BINARY(proxy_imul, PyNumber_InPlaceMultiply) in WRAP_BINARY()
Dclassobject.c1655 BINARY_INPLACE(instance_imul, "mul", PyNumber_InPlaceMultiply)
Dabstract.c1359 PyNumber_InPlaceMultiply(PyObject *v, PyObject *w) function
/external/python/cpython3/Doc/c-api/
Dnumber.rst150 .. c:function:: PyObject* PyNumber_InPlaceMultiply(PyObject *o1, PyObject *o2)
/external/python/cpython2/Modules/
Doperator.c110 spam2(op_imul , PyNumber_InPlaceMultiply) in spami()
/external/python/cpython2/PC/os2emx/
Dpython27.def99 "PyNumber_InPlaceMultiply"
/external/python/cpython2/Doc/c-api/
Dnumber.rst152 .. c:function:: PyObject* PyNumber_InPlaceMultiply(PyObject *o1, PyObject *o2)
/external/python/cpython3/Modules/
D_operator.c314 return PyNumber_InPlaceMultiply(a, b); in _operator_imul_impl()
/external/python/cpython3/Doc/data/
Drefcounts.dat1436 PyNumber_InPlaceMultiply:PyObject*::+1:
1437 PyNumber_InPlaceMultiply:PyObject*:v:0:
1438 PyNumber_InPlaceMultiply:PyObject*:w:0:
/external/python/cpython3/Python/
Dceval.c1421 PyObject *res = PyNumber_InPlaceMultiply(left, right); in _PyEval_EvalFrameDefault()
/external/python/cpython2/Python/
Dceval.c1661 x = PyNumber_InPlaceMultiply(v, w); in PyEval_EvalFrameEx()