Home
last modified time | relevance | path

Searched refs:ternaryfunc (Results 1 – 20 of 20) sorted by relevance

/third_party/python/Include/cpython/
Dobject.h114 ternaryfunc nb_power;
133 ternaryfunc nb_inplace_power;
215 ternaryfunc tp_call;
/third_party/python/Doc/includes/
Dtypestruct.h25 ternaryfunc tp_call;
/third_party/python/Objects/
Dcall.c181 ternaryfunc call = Py_TYPE(callable)->tp_call; in _PyObject_MakeTpCall()
279 ternaryfunc call; in _PyObject_Call()
Dabstract.c844 (*(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()
Ddescrobject.c745 (ternaryfunc)classmethoddescr_call, /* tp_call */
856 (ternaryfunc)wrapperdescr_call, /* tp_call */
1413 (ternaryfunc)wrapper_call, /* tp_call */
Dcomplexobject.c1023 (ternaryfunc)complex_pow, /* nb_power */
Dweakrefobject.c387 (ternaryfunc)weakref_call, /*tp_call*/
Dtypeobject.c4340 (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/
Dobject.h186 typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *); typedef
/third_party/python/Doc/c-api/
Dtypeobj.rst72 …| :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/
Dstable_abi.dat860 type,ternaryfunc,3.2,
/third_party/python/Modules/
D_functoolsmodule.c74 if (Py_TYPE(func)->tp_call == (ternaryfunc)partial_call) { in partial_new()
D_asynciomodule.c1883 .tp_call = (ternaryfunc)TaskStepMethWrapper_call,
D_testcapimodule.c1109 ternaryfunc tp_call = PyType_GetSlot(&PyLong_Type, Py_tp_call); in test_get_statictype_slots()
/third_party/flutter/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c1861 (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/
Dlibwebp_python_wrap.c1884 (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/
Dstable_abi.txt210 typedef ternaryfunc
/third_party/python/Doc/extending/
Dnewtypes.rst483 ternaryfunc tp_call;
/third_party/python/Modules/_decimal/
D_decimal.c2226 static ternaryfunc _py_long_power;
4717 (ternaryfunc) nm_mpd_qpow,
/third_party/python/Modules/_ctypes/
D_ctypes.c4324 (ternaryfunc)PyCFuncPtr_call, /* tp_call */