Searched refs:nb_remainder (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeslots.inc | 35 offsetof(PyHeapTypeObject, as_number.nb_remainder),
|
D | abstract.c | 1025 return binary_op(v, w, NB_SLOT(nb_remainder), "%"); in PyNumber_Remainder() 1168 NB_SLOT(nb_remainder), "%="); in PyNumber_InPlaceRemainder()
|
D | typeobject.c | 4973 COPYNUM(nb_remainder); in inherit_slots() 6174 SLOT1BIN(slot_nb_remainder, nb_remainder, "__mod__", "__rmod__") 6864 BINSLOT("__mod__", nb_remainder, slot_nb_remainder, 6866 RBINSLOT("__rmod__", nb_remainder, slot_nb_remainder,
|
/external/python/cpython3/Include/ |
D | object.h | 248 binaryfunc nb_remainder; member
|
/external/python/cpython2/Include/ |
D | object.h | 232 binaryfunc nb_remainder; member
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1249 return binary_op(v, w, NB_SLOT(nb_remainder), "%"); 1392 NB_SLOT(nb_remainder), "%=");
|
D | intobject.c | 700 return PyLong_Type.tp_as_number->nb_remainder((PyObject *)x, in int_mod()
|
D | typeobject.c | 3961 COPYNUM(nb_remainder); 5295 SLOT1BIN(slot_nb_remainder, nb_remainder, "__mod__", "__rmod__") 6105 BINSLOT("__mod__", nb_remainder, slot_nb_remainder, 6107 RBINSLOT("__rmod__", nb_remainder, slot_nb_remainder,
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 486 :attr:`nb_multiply`, :attr:`nb_divide`, :attr:`nb_remainder`, :attr:`nb_divmod`, 1158 binaryfunc nb_remainder;
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 1100 binaryfunc nb_remainder;
|