Searched refs:nb_rshift (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Objects/ |
D | typeslots.inc | 36 {offsetof(PyNumberMethods, nb_rshift), offsetof(PyTypeObject, tp_as_number)},
|
D | abstract.c | 934 if (op_slot == NB_SLOT(nb_rshift) && in binary_op() 1064 BINARY_FUNC(PyNumber_Rshift, nb_rshift, ">>") 1243 INPLACE_BINOP(PyNumber_InPlaceRshift, nb_inplace_rshift, nb_rshift, ">>=")
|
D | typeobject.c | 5797 COPYNUM(nb_rshift); in inherit_slots() 7373 SLOT1BIN(slot_nb_rshift, nb_rshift, "__rshift__", "__rrshift__") 8000 BINSLOT("__rshift__", nb_rshift, slot_nb_rshift, ">>"), 8001 RBINSLOT("__rrshift__", nb_rshift, slot_nb_rshift, ">>"),
|
/third_party/python/Include/cpython/ |
D | object.h | 121 binaryfunc nb_rshift; member
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 249 …| :c:member:`~PyNumberMethods.nb_rshift` | :c:type:`binaryfunc` | __… 2107 binaryfunc nb_rshift; 2164 .. c:member:: binaryfunc PyNumberMethods.nb_rshift
|