Searched refs:binary_iop1 (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Objects/ |
D | abstract.c | 1112 binary_iop1(PyObject *v, PyObject *w, const int iop_slot, const int op_slot) in binary_iop1() function 1132 PyObject *result = binary_iop1(v, w, iop_slot, op_slot); in binary_iop() 1171 PyObject *result = binary_iop1(v, w, NB_SLOT(nb_inplace_add), in PyNumber_InPlaceAdd() 1192 PyObject *result = binary_iop1(v, w, NB_SLOT(nb_inplace_multiply), in PyNumber_InPlaceMultiply() 1700 PyObject *result = binary_iop1(s, o, NB_SLOT(nb_inplace_add), in PySequence_InPlaceConcat() 1729 result = binary_iop1(o, n, NB_SLOT(nb_inplace_multiply), in PySequence_InPlaceRepeat()
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1278 binary_iop1(PyObject *v, PyObject *w, const int iop_slot, const int op_slot) function 1298 PyObject *result = binary_iop1(v, w, iop_slot, op_slot); 1339 PyObject *result = binary_iop1(v, w, NB_SLOT(nb_inplace_add), 1361 PyObject *result = binary_iop1(v, w, NB_SLOT(nb_inplace_multiply), 1947 PyObject *result = binary_iop1(s, o, NB_SLOT(nb_inplace_add), 1975 result = binary_iop1(o, n, NB_SLOT(nb_inplace_multiply),
|