Home
last modified time | relevance | path

Searched refs:nb_negative (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Objects/
Dtypeslots.inc31 offsetof(PyHeapTypeObject, as_number.nb_negative),
Dabstract.c1257 if (m && m->nb_negative) in PyNumber_Negative()
1258 return (*m->nb_negative)(o); in PyNumber_Negative()
Dtypeobject.c5211 COPYNUM(nb_negative); in inherit_slots()
7208 UNSLOT("__neg__", nb_negative, slot_nb_negative, wrap_unaryfunc, "-self"),
/external/python/cpython3/Include/cpython/
Dobject.h122 unaryfunc nb_negative; member
/external/python/cpython2/Include/
Dobject.h235 unaryfunc nb_negative; member
/external/python/cpython2/Objects/
Dabstract.c1418 if (m && m->nb_negative)
1419 return (*m->nb_negative)(o);
Dtypeobject.c3964 COPYNUM(nb_negative);
6117 UNSLOT("__neg__", nb_negative, slot_nb_negative, wrap_unaryfunc, "-x"),
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst232 …| :c:member:`~PyNumberMethods.nb_negative` | :c:type:`unaryfunc` | __…
1985 unaryfunc nb_negative;
2042 .. c:member:: unaryfunc PyNumberMethods.nb_negative
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst1161 unaryfunc nb_negative;