Searched refs:nb_and (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Objects/ |
D | boolobject.c | 88 return PyLong_Type.tp_as_number->nb_and(a, b); in bool_and()
|
D | typeslots.inc | 9 {offsetof(PyNumberMethods, nb_and), offsetof(PyTypeObject, tp_as_number)},
|
D | abstract.c | 1062 BINARY_FUNC(PyNumber_And, nb_and, "&") 1241 INPLACE_BINOP(PyNumber_InPlaceAnd, nb_inplace_and, nb_and, "&=")
|
D | typeobject.c | 5798 COPYNUM(nb_and); in inherit_slots() 7374 SLOT1BIN(slot_nb_and, nb_and, "__and__", "__rand__") 8002 BINSLOT("__and__", nb_and, slot_nb_and, "&"), 8003 RBINSLOT("__rand__", nb_and, slot_nb_and, "&"),
|
/third_party/python/Include/cpython/ |
D | object.h | 122 binaryfunc nb_and; member
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 254 …| :c:member:`~PyNumberMethods.nb_and` | :c:type:`binaryfunc` | __… 2108 binaryfunc nb_and; 2165 .. c:member:: binaryfunc PyNumberMethods.nb_and
|