Home
last modified time | relevance | path

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

/third_party/python/Include/
Dabstract.h553 PyAPI_FUNC(PyObject *) PyNumber_InPlaceAdd(PyObject *o1, PyObject *o2);
/third_party/python/Objects/
Dweakrefobject.c551 WRAP_BINARY(proxy_iadd, PyNumber_InPlaceAdd) in WRAP_BINARY()
Dabstract.c1262 PyNumber_InPlaceAdd(PyObject *v, PyObject *w) in PyNumber_InPlaceAdd() function
/third_party/python/Doc/c-api/
Dnumber.rst139 .. c:function:: PyObject* PyNumber_InPlaceAdd(PyObject *o1, PyObject *o2)
/third_party/python/Doc/data/
Dstable_abi.dat415 function,PyNumber_InPlaceAdd,3.2,
Drefcounts.dat1447 PyNumber_InPlaceAdd:PyObject*::+1:
1448 PyNumber_InPlaceAdd:PyObject*:v:0:
1449 PyNumber_InPlaceAdd:PyObject*:w:0:
/third_party/python/PC/
Dpython3dll.c392 EXPORT_FUNC(PyNumber_InPlaceAdd)
/third_party/python/Modules/
D_operator.c301 return PyNumber_InPlaceAdd(a, b); in _operator_iadd_impl()
/third_party/python/Misc/
Dstable_abi.txt950 function PyNumber_InPlaceAdd
/third_party/python/Python/
Dceval.c2283 sum = PyNumber_InPlaceAdd(left, right); in _PyEval_EvalFrameDefault()