Searched refs:nb_xor (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Objects/ |
D | boolobject.c | 79 return PyLong_Type.tp_as_number->nb_xor(a, b); in bool_xor()
|
D | typeslots.inc | 39 offsetof(PyHeapTypeObject, as_number.nb_xor),
|
D | abstract.c | 905 BINARY_FUNC(PyNumber_Xor, nb_xor, "^") 1044 INPLACE_BINOP(PyNumber_InPlaceXor, nb_inplace_xor, nb_xor, "^=")
|
D | typeobject.c | 4758 COPYNUM(nb_xor); in inherit_slots() 6051 SLOT1BIN(slot_nb_xor, nb_xor, "__xor__", "__rxor__") 6648 BINSLOT("__xor__", nb_xor, slot_nb_xor, "^"), 6649 RBINSLOT("__rxor__", nb_xor, slot_nb_xor, "^"),
|
/external/python/cpython2/Objects/ |
D | boolobject.c | 91 return PyInt_Type.tp_as_number->nb_xor(a, b); in bool_xor()
|
D | abstract.c | 1174 BINARY_FUNC(PyNumber_Xor, nb_xor, "^") 1313 INPLACE_BINOP(PyNumber_InPlaceXor, nb_inplace_xor, nb_xor, "^=")
|
D | typeobject.c | 3909 COPYNUM(nb_xor); 5316 SLOT1BIN(slot_nb_xor, nb_xor, "__xor__", "__rxor__") 6067 BINSLOT("__xor__", nb_xor, slot_nb_xor, "^"), 6068 RBINSLOT("__rxor__", nb_xor, slot_nb_xor, "^"),
|
/external/python/cpython2/Include/ |
D | object.h | 243 binaryfunc nb_xor; member
|
/external/python/cpython3/Include/ |
D | object.h | 259 binaryfunc nb_xor; member
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 488 :attr:`nb_xor`, and :attr:`nb_or`. 1184 binaryfunc nb_xor;
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 1110 binaryfunc nb_xor;
|