Searched defs:binary_op1 (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
H A Dabstract.c923 binary_op1(PyObject *v, PyObject *w, const int op_slot) function
997 PyObject *result = binary_op1(v, w, op_slot);
1009 *** In some cases, w.op is called before v.op; see binary_op1. ***
1185 PyObject *result = binary_op1(v, w, NB_SLOT(nb_add));
1216 PyObject *result = binary_op1(v, w, NB_SLOT(nb_multiply));
1291 return binary_op1(v, w, op_slot);
1898 PyObject *result = binary_op1(s, o, NB_SLOT(nb_add));
1926 result = binary_op1(o, n, NB_SLOT(nb_multiply));
/external/python/cpython3/Objects/
H A Dabstract.c758 binary_op1(PyObject *v, PyObject *w, const int op_slot) function
809 PyObject *result = binary_op1(v, w, op_slot);
915 PyObject *result = binary_op1(v, w, NB_SLOT(nb_add));
946 PyObject *result = binary_op1(v, w, NB_SLOT(nb_multiply));
1022 return binary_op1(v, w, op_slot);
1512 PyObject *result = binary_op1(s, o, NB_SLOT(nb_add));
1541 result = binary_op1(o, n, NB_SLOT(nb_multiply));

Completed in 145 milliseconds