Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dboolobject.c63 return PyLong_Type.tp_as_number->nb_and(a, b); in bool_and()
Dtypeslots.inc9 offsetof(PyHeapTypeObject, as_number.nb_and),
Dabstract.c906 BINARY_FUNC(PyNumber_And, nb_and, "&")
1045 INPLACE_BINOP(PyNumber_InPlaceAnd, nb_inplace_and, nb_and, "&=")
Dtypeobject.c4757 COPYNUM(nb_and); in inherit_slots()
6050 SLOT1BIN(slot_nb_and, nb_and, "__and__", "__rand__")
6646 BINSLOT("__and__", nb_and, slot_nb_and, "&"),
6647 RBINSLOT("__rand__", nb_and, slot_nb_and, "&"),
/external/python/cpython2/Objects/
Dboolobject.c73 return PyInt_Type.tp_as_number->nb_and(a, b); in bool_and()
Dabstract.c1175 BINARY_FUNC(PyNumber_And, nb_and, "&")
1314 INPLACE_BINOP(PyNumber_InPlaceAnd, nb_inplace_and, nb_and, "&=")
Dtypeobject.c3908 COPYNUM(nb_and);
5315 SLOT1BIN(slot_nb_and, nb_and, "__and__", "__rand__")
6065 BINSLOT("__and__", nb_and, slot_nb_and, "&"),
6066 RBINSLOT("__rand__", nb_and, slot_nb_and, "&"),
/external/python/cpython2/Include/
Dobject.h242 binaryfunc nb_and; member
/external/python/cpython3/Include/
Dobject.h258 binaryfunc nb_and; member
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst487 :attr:`nb_power`, :attr:`nb_lshift`, :attr:`nb_rshift`, :attr:`nb_and`,
1183 binaryfunc nb_and;
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst1109 binaryfunc nb_and;