Home
last modified time | relevance | path

Searched refs:nb_xor (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Objects/
Dboolobject.c80 return PyLong_Type.tp_as_number->nb_xor(a, b); in bool_xor()
Dtypeslots.inc39 offsetof(PyHeapTypeObject, as_number.nb_xor),
Dabstract.c947 BINARY_FUNC(PyNumber_Xor, nb_xor, "^")
1086 INPLACE_BINOP(PyNumber_InPlaceXor, nb_inplace_xor, nb_xor, "^=")
Dtypeobject.c4984 COPYNUM(nb_xor); in inherit_slots()
6270 SLOT1BIN(slot_nb_xor, nb_xor, "__xor__", "__rxor__")
6889 BINSLOT("__xor__", nb_xor, slot_nb_xor, "^"),
6890 RBINSLOT("__rxor__", nb_xor, slot_nb_xor, "^"),
/external/python/cpython2/Objects/
Dboolobject.c91 return PyInt_Type.tp_as_number->nb_xor(a, b); in bool_xor()
Dabstract.c1174 BINARY_FUNC(PyNumber_Xor, nb_xor, "^")
1313 INPLACE_BINOP(PyNumber_InPlaceXor, nb_inplace_xor, nb_xor, "^=")
Dtypeobject.c3972 COPYNUM(nb_xor);
5379 SLOT1BIN(slot_nb_xor, nb_xor, "__xor__", "__rxor__")
6130 BINSLOT("__xor__", nb_xor, slot_nb_xor, "^"),
6131 RBINSLOT("__rxor__", nb_xor, slot_nb_xor, "^"),
/external/python/cpython3/Include/
Dobject.h259 binaryfunc nb_xor; member
/external/python/cpython2/Include/
Dobject.h243 binaryfunc nb_xor; member
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst488 :attr:`nb_xor`, and :attr:`nb_or`.
1169 binaryfunc nb_xor;
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst1111 binaryfunc nb_xor;