Home
last modified time | relevance | path

Searched refs:nb_rshift (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Objects/
Dtypeslots.inc36 offsetof(PyHeapTypeObject, as_number.nb_rshift),
Dabstract.c902 if (op_slot == NB_SLOT(nb_rshift) && in binary_op()
1011 BINARY_FUNC(PyNumber_Rshift, nb_rshift, ">>")
1150 INPLACE_BINOP(PyNumber_InPlaceRshift, nb_inplace_rshift, nb_rshift, ">>=")
Dtypeobject.c5217 COPYNUM(nb_rshift); in inherit_slots()
6590 SLOT1BIN(slot_nb_rshift, nb_rshift, "__rshift__", "__rrshift__")
7217 BINSLOT("__rshift__", nb_rshift, slot_nb_rshift, ">>"),
7218 RBINSLOT("__rrshift__", nb_rshift, slot_nb_rshift, ">>"),
/external/python/cpython3/Include/cpython/
Dobject.h128 binaryfunc nb_rshift; member
/external/python/cpython2/Include/
Dobject.h241 binaryfunc nb_rshift; member
/external/python/cpython2/Objects/
Dabstract.c1177 BINARY_FUNC(PyNumber_Rshift, nb_rshift, ">>")
1316 INPLACE_BINOP(PyNumber_InPlaceRshift, nb_inplace_rshift, nb_rshift, ">>=")
Dtypeobject.c3970 COPYNUM(nb_rshift);
5377 SLOT1BIN(slot_nb_rshift, nb_rshift, "__rshift__", "__rrshift__")
6126 BINSLOT("__rshift__", nb_rshift, slot_nb_rshift, ">>"),
6127 RBINSLOT("__rrshift__", nb_rshift, slot_nb_rshift, ">>"),
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst247 …| :c:member:`~PyNumberMethods.nb_rshift` | :c:type:`binaryfunc` | __…
1991 binaryfunc nb_rshift;
2048 .. c:member:: binaryfunc PyNumberMethods.nb_rshift
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst487 :attr:`nb_power`, :attr:`nb_lshift`, :attr:`nb_rshift`, :attr:`nb_and`,
1167 binaryfunc nb_rshift;