Searched refs:nb_inplace_power (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeslots.inc | 21 offsetof(PyHeapTypeObject, as_number.nb_inplace_power),
|
D | abstract.c | 1133 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()
|
D | typeobject.c | 4766 COPYNUM(nb_inplace_power); in inherit_slots() 6664 IBSLOT("__ipow__", nb_inplace_power, slot_nb_inplace_power,
|
/external/python/cpython2/Include/ |
D | object.h | 257 ternaryfunc nb_inplace_power; member
|
/external/python/cpython3/Include/ |
D | object.h | 269 ternaryfunc nb_inplace_power; member
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1399 v->ob_type->tp_as_number->nb_inplace_power != NULL) { 1400 return ternary_op(v, w, z, NB_SLOT(nb_inplace_power), "**=");
|
D | typeobject.c | 3922 COPYNUM(nb_inplace_power); 6093 IBSLOT("__ipow__", nb_inplace_power, slot_nb_inplace_power,
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 471 :attr:`nb_inplace_remainder`, :attr:`nb_inplace_power`, 1199 ternaryfunc nb_inplace_power;
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 1120 ternaryfunc nb_inplace_power;
|