Home
last modified time | relevance | path

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

/third_party/python/Include/
Dabstract.h565 PyAPI_FUNC(PyObject *) PyNumber_InPlaceMultiply(PyObject *o1, PyObject *o2);
/third_party/python/Objects/
Dweakrefobject.c553 WRAP_BINARY(proxy_imul, PyNumber_InPlaceMultiply) in WRAP_BINARY()
Dabstract.c1285 PyNumber_InPlaceMultiply(PyObject *v, PyObject *w) in PyNumber_InPlaceMultiply() function
/third_party/python/Doc/c-api/
Dnumber.rst153 .. c:function:: PyObject* PyNumber_InPlaceMultiply(PyObject *o1, PyObject *o2)
/third_party/python/PC/
Dpython3dll.c397 EXPORT_FUNC(PyNumber_InPlaceMultiply)
/third_party/python/Doc/data/
Dstable_abi.dat420 function,PyNumber_InPlaceMultiply,3.2,
Drefcounts.dat1467 PyNumber_InPlaceMultiply:PyObject*::+1:
1468 PyNumber_InPlaceMultiply:PyObject*:v:0:
1469 PyNumber_InPlaceMultiply:PyObject*:w:0:
/third_party/python/Modules/
D_operator.c327 return PyNumber_InPlaceMultiply(a, b); in _operator_imul_impl()
/third_party/python/Misc/
Dstable_abi.txt958 function PyNumber_InPlaceMultiply
/third_party/python/Python/
Dceval.c2217 PyObject *res = PyNumber_InPlaceMultiply(left, right); in _PyEval_EvalFrameDefault()