Searched refs:nb_inplace_power (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeslots.inc | 21 offsetof(PyHeapTypeObject, as_number.nb_inplace_power),
|
D | abstract.c | 1176 v->ob_type->tp_as_number->nb_inplace_power != NULL) { in PyNumber_InPlacePower() 1177 return ternary_op(v, w, z, NB_SLOT(nb_inplace_power), "**="); in PyNumber_InPlacePower()
|
D | typeobject.c | 5089 COPYNUM(nb_inplace_power); in inherit_slots() 7047 IBSLOT("__ipow__", nb_inplace_power, slot_nb_inplace_power,
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 124 ternaryfunc nb_inplace_power; member
|
/external/python/cpython2/Include/ |
D | object.h | 257 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 | 3985 COPYNUM(nb_inplace_power); 6156 IBSLOT("__ipow__", nb_inplace_power, slot_nb_inplace_power,
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 237 …| :c:member:`~PyNumberMethods.nb_inplace_power` | :c:type:`ternaryfunc` | __… 2013 ternaryfunc nb_inplace_power; 2069 .. c:member:: ternaryfunc PyNumberMethods.nb_inplace_power
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 471 :attr:`nb_inplace_remainder`, :attr:`nb_inplace_power`, 1184 ternaryfunc nb_inplace_power;
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 5570 .nb_inplace_power = ipowType_ipow
|