Searched refs:nb_xor (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Objects/ |
D | boolobject.c | 104 return PyLong_Type.tp_as_number->nb_xor(a, b); in bool_xor()
|
D | typeslots.inc | 39 {offsetof(PyNumberMethods, nb_xor), offsetof(PyTypeObject, tp_as_number)},
|
D | abstract.c | 1061 BINARY_FUNC(PyNumber_Xor, nb_xor, "^") 1240 INPLACE_BINOP(PyNumber_InPlaceXor, nb_inplace_xor, nb_xor, "^=")
|
D | typeobject.c | 5799 COPYNUM(nb_xor); in inherit_slots() 7375 SLOT1BIN(slot_nb_xor, nb_xor, "__xor__", "__rxor__") 8004 BINSLOT("__xor__", nb_xor, slot_nb_xor, "^"), 8005 RBINSLOT("__rxor__", nb_xor, slot_nb_xor, "^"),
|
/third_party/python/Include/cpython/ |
D | object.h | 123 binaryfunc nb_xor; member
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 259 …| :c:member:`~PyNumberMethods.nb_xor` | :c:type:`binaryfunc` | __… 2109 binaryfunc nb_xor; 2166 .. c:member:: binaryfunc PyNumberMethods.nb_xor
|