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 | 1236 Py_TYPE(v)->tp_as_number->nb_inplace_power != NULL) { in PyNumber_InPlacePower() 1237 return ternary_op(v, w, z, NB_SLOT(nb_inplace_power), "**="); in PyNumber_InPlacePower()
|
D | typeobject.c | 5227 COPYNUM(nb_inplace_power); in inherit_slots() 7237 IBSLOT("__ipow__", nb_inplace_power, slot_nb_inplace_power,
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 140 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 | 230 …| :c:member:`~PyNumberMethods.nb_inplace_power` | :c:type:`ternaryfunc` | __… 2003 ternaryfunc nb_inplace_power; 2059 .. 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 | 5819 .nb_inplace_power = ipowType_ipow
|