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.c1086 return binary_op(v, w, NB_SLOT(nb_remainder), "%"); in PyNumber_Remainder()
1229 NB_SLOT(nb_remainder), "%="); in PyNumber_InPlaceRemainder()
Dtypeobject.c5208 COPYNUM(nb_remainder); in inherit_slots()
6495 SLOT1BIN(slot_nb_remainder, nb_remainder, "__mod__", "__rmod__")
7196 BINSLOT("__mod__", nb_remainder, slot_nb_remainder,
7198 RBINSLOT("__rmod__", nb_remainder, slot_nb_remainder,
/external/python/cpython3/Include/cpython/
Dobject.h119 binaryfunc nb_remainder; member
/external/python/cpython2/Include/
Dobject.h232 binaryfunc nb_remainder; member
/external/python/cpython2/Objects/
Dintobject.c700 return PyLong_Type.tp_as_number->nb_remainder((PyObject *)x, in int_mod()
Dabstract.c1249 return binary_op(v, w, NB_SLOT(nb_remainder), "%");
1392 NB_SLOT(nb_remainder), "%=");
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/cpython3/Doc/c-api/
Dtypeobj.rst219 …| :c:member:`~PyNumberMethods.nb_remainder` | :c:type:`binaryfunc` | __…
1982 binaryfunc nb_remainder;
2039 .. c:member:: binaryfunc PyNumberMethods.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;