Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dtypeslots.inc21 offsetof(PyHeapTypeObject, as_number.nb_inplace_power),
Dabstract.c1133 v->ob_type->tp_as_number->nb_inplace_power != NULL) { in PyNumber_InPlacePower()
1134 return ternary_op(v, w, z, NB_SLOT(nb_inplace_power), "**="); in PyNumber_InPlacePower()
Dtypeobject.c4766 COPYNUM(nb_inplace_power); in inherit_slots()
6664 IBSLOT("__ipow__", nb_inplace_power, slot_nb_inplace_power,
/external/python/cpython2/Include/
Dobject.h257 ternaryfunc nb_inplace_power; member
/external/python/cpython3/Include/
Dobject.h269 ternaryfunc nb_inplace_power; member
/external/python/cpython2/Objects/
Dabstract.c1399 v->ob_type->tp_as_number->nb_inplace_power != NULL) {
1400 return ternary_op(v, w, z, NB_SLOT(nb_inplace_power), "**=");
Dtypeobject.c3922 COPYNUM(nb_inplace_power);
6093 IBSLOT("__ipow__", nb_inplace_power, slot_nb_inplace_power,
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst471 :attr:`nb_inplace_remainder`, :attr:`nb_inplace_power`,
1199 ternaryfunc nb_inplace_power;
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst1120 ternaryfunc nb_inplace_power;