Searched refs:BINSLOT (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Objects/ |
D | typeobject.c | 7867 #undef BINSLOT 7893 #define BINSLOT(NAME, SLOT, FUNCTION, DOC) \ macro 7967 BINSLOT("__add__", nb_add, slot_nb_add, 7971 BINSLOT("__sub__", nb_subtract, slot_nb_subtract, 7975 BINSLOT("__mul__", nb_multiply, slot_nb_multiply, 7979 BINSLOT("__mod__", nb_remainder, slot_nb_remainder, 7998 BINSLOT("__lshift__", nb_lshift, slot_nb_lshift, "<<"), 8000 BINSLOT("__rshift__", nb_rshift, slot_nb_rshift, ">>"), 8002 BINSLOT("__and__", nb_and, slot_nb_and, "&"), 8004 BINSLOT("__xor__", nb_xor, slot_nb_xor, "^"), [all …]
|