Searched refs:binary_iop (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Objects/ |
D | abstract.c | 1129 binary_iop(PyObject *v, PyObject *w, const int iop_slot, const int op_slot, in binary_iop() function 1143 return binary_iop(v, w, NB_SLOT(iop), NB_SLOT(op), op_name); \ 1157 return binary_iop(v, w, NB_SLOT(nb_inplace_floor_divide), in PyNumber_InPlaceFloorDivide() 1164 return binary_iop(v, w, NB_SLOT(nb_inplace_true_divide), in PyNumber_InPlaceTrueDivide() 1221 return binary_iop(v, w, NB_SLOT(nb_inplace_matrix_multiply), in PyNumber_InPlaceMatrixMultiply() 1228 return binary_iop(v, w, NB_SLOT(nb_inplace_remainder), in PyNumber_InPlaceRemainder()
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1295 binary_iop(PyObject *v, PyObject *w, const int iop_slot, const int op_slot, function 1309 return binary_iop(v, w, NB_SLOT(iop), NB_SLOT(op), op_name); \ 1324 return binary_iop(v, w, NB_SLOT(nb_inplace_floor_divide), 1332 return binary_iop(v, w, NB_SLOT(nb_inplace_true_divide), 1391 return binary_iop(v, w, NB_SLOT(nb_inplace_remainder),
|