Searched refs:ternaryfunc (Results 1 – 20 of 20) sorted by relevance
/third_party/python/Include/cpython/ |
D | object.h | 114 ternaryfunc nb_power; 133 ternaryfunc nb_inplace_power; 215 ternaryfunc tp_call;
|
/third_party/python/Doc/includes/ |
D | typestruct.h | 25 ternaryfunc tp_call;
|
/third_party/python/Objects/ |
D | call.c | 181 ternaryfunc call = Py_TYPE(callable)->tp_call; in _PyObject_MakeTpCall() 279 ternaryfunc call; in _PyObject_Call()
|
D | abstract.c | 844 (*(ternaryfunc*)(& ((char*)nb_methods)[slot])) 971 ternaryfunc slotv; in ternary_op() 979 ternaryfunc slotw; in ternary_op() 1018 ternaryfunc slotz = NB_TERNOP(mz, op_slot); in ternary_op() 1221 ternaryfunc slot = NB_TERNOP(mv, iop_slot); in ternary_iop()
|
D | descrobject.c | 745 (ternaryfunc)classmethoddescr_call, /* tp_call */ 856 (ternaryfunc)wrapperdescr_call, /* tp_call */ 1413 (ternaryfunc)wrapper_call, /* tp_call */
|
D | complexobject.c | 1023 (ternaryfunc)complex_pow, /* nb_power */
|
D | weakrefobject.c | 387 (ternaryfunc)weakref_call, /*tp_call*/
|
D | typeobject.c | 4340 (ternaryfunc)type_call, /* tp_call */ 6551 ternaryfunc func = (ternaryfunc)wrapped; in wrap_ternaryfunc() 6565 ternaryfunc func = (ternaryfunc)wrapped; in wrap_ternaryfunc_r() 6831 ternaryfunc func = (ternaryfunc)wrapped; in wrap_call()
|
/third_party/python/Include/ |
D | object.h | 186 typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *); typedef
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 72 …| :c:member:`~PyTypeObject.tp_call` | :c:type:`ternaryfunc` | __call__ … 229 …| :c:member:`~PyNumberMethods.nb_power` | :c:type:`ternaryfunc` | __… 232 …| :c:member:`~PyNumberMethods.nb_inplace_power` | :c:type:`ternaryfunc` | __… 432 | :c:type:`ternaryfunc` | .. line-block:: | :c:type:`PyObject` * | 904 .. c:member:: ternaryfunc PyTypeObject.tp_call 2100 ternaryfunc nb_power; 2119 ternaryfunc nb_inplace_power; 2157 .. c:member:: ternaryfunc PyNumberMethods.nb_power 2175 .. c:member:: ternaryfunc PyNumberMethods.nb_inplace_power 2566 .. c:type:: PyObject *(*ternaryfunc)(PyObject *, PyObject *, PyObject *)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 860 type,ternaryfunc,3.2,
|
/third_party/python/Modules/ |
D | _functoolsmodule.c | 74 if (Py_TYPE(func)->tp_call == (ternaryfunc)partial_call) { in partial_new()
|
D | _asynciomodule.c | 1883 .tp_call = (ternaryfunc)TaskStepMethWrapper_call,
|
D | _testcapimodule.c | 1109 ternaryfunc tp_call = PyType_GetSlot(&PyLong_Type, Py_tp_call); in test_get_statictype_slots()
|
/third_party/flutter/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 1861 (ternaryfunc)0,/*nb_power*/ in SwigPyObject_TypeOnce() 1931 (ternaryfunc)0, /* tp_call */ in SwigPyObject_TypeOnce() 2119 (ternaryfunc)0, /* tp_call */ in SwigPyPacked_TypeOnce()
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 1884 (ternaryfunc)0,/*nb_power*/ in SwigPyObject_TypeOnce() 1953 (ternaryfunc)0, /* tp_call */ in SwigPyObject_TypeOnce() 2140 (ternaryfunc)0, /* tp_call */ in SwigPyPacked_TypeOnce()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 210 typedef ternaryfunc
|
/third_party/python/Doc/extending/ |
D | newtypes.rst | 483 ternaryfunc tp_call;
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 2226 static ternaryfunc _py_long_power; 4717 (ternaryfunc) nm_mpd_qpow,
|
/third_party/python/Modules/_ctypes/ |
D | _ctypes.c | 4324 (ternaryfunc)PyCFuncPtr_call, /* tp_call */
|