Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dboolobject.c64 return PyLong_Type.tp_as_number->nb_and(a, b); in bool_and()
Dtypeslots.inc9 offsetof(PyHeapTypeObject, as_number.nb_and),
Dabstract.c948 BINARY_FUNC(PyNumber_And, nb_and, "&")
1087 INPLACE_BINOP(PyNumber_InPlaceAnd, nb_inplace_and, nb_and, "&=")
Dtypeobject.c4983 COPYNUM(nb_and); in inherit_slots()
6269 SLOT1BIN(slot_nb_and, nb_and, "__and__", "__rand__")
6887 BINSLOT("__and__", nb_and, slot_nb_and, "&"),
6888 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.c3971 COPYNUM(nb_and);
5378 SLOT1BIN(slot_nb_and, nb_and, "__and__", "__rand__")
6128 BINSLOT("__and__", nb_and, slot_nb_and, "&"),
6129 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`,
1168 binaryfunc nb_and;
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst1110 binaryfunc nb_and;