Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dtypeslots.inc35 offsetof(PyHeapTypeObject, as_number.nb_remainder),
Dabstract.c1025 return binary_op(v, w, NB_SLOT(nb_remainder), "%"); in PyNumber_Remainder()
1168 NB_SLOT(nb_remainder), "%="); in PyNumber_InPlaceRemainder()
Dtypeobject.c4973 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/
Dobject.h248 binaryfunc nb_remainder; member
/external/python/cpython2/Include/
Dobject.h232 binaryfunc nb_remainder; member
/external/python/cpython2/Objects/
Dabstract.c1249 return binary_op(v, w, NB_SLOT(nb_remainder), "%");
1392 NB_SLOT(nb_remainder), "%=");
Dintobject.c700 return PyLong_Type.tp_as_number->nb_remainder((PyObject *)x, in int_mod()
Dtypeobject.c3961 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/
Dtypeobj.rst486 :attr:`nb_multiply`, :attr:`nb_divide`, :attr:`nb_remainder`, :attr:`nb_divmod`,
1158 binaryfunc nb_remainder;
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst1100 binaryfunc nb_remainder;