Searched refs:nb_and (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Objects/ |
D | boolobject.c | 64 return PyLong_Type.tp_as_number->nb_and(a, b); in bool_and()
|
D | typeslots.inc | 9 offsetof(PyHeapTypeObject, as_number.nb_and),
|
D | abstract.c | 948 BINARY_FUNC(PyNumber_And, nb_and, "&") 1087 INPLACE_BINOP(PyNumber_InPlaceAnd, nb_inplace_and, nb_and, "&=")
|
D | typeobject.c | 4983 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/ |
D | boolobject.c | 73 return PyInt_Type.tp_as_number->nb_and(a, b); in bool_and()
|
D | abstract.c | 1175 BINARY_FUNC(PyNumber_And, nb_and, "&") 1314 INPLACE_BINOP(PyNumber_InPlaceAnd, nb_inplace_and, nb_and, "&=")
|
D | typeobject.c | 3971 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/ |
D | object.h | 242 binaryfunc nb_and; member
|
/external/python/cpython3/Include/ |
D | object.h | 258 binaryfunc nb_and; member
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 487 :attr:`nb_power`, :attr:`nb_lshift`, :attr:`nb_rshift`, :attr:`nb_and`, 1168 binaryfunc nb_and;
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 1110 binaryfunc nb_and;
|