Searched refs:ternaryfunc (Results 1 - 14 of 14) sorted by relevance
/third_party/python/Include/cpython/ |
H A D | object.h | 71 ternaryfunc nb_power; 90 ternaryfunc nb_inplace_power; 172 ternaryfunc tp_call;
|
/third_party/python/Doc/includes/ |
H A D | typestruct.h | 25 ternaryfunc tp_call;
|
/third_party/python/Objects/ |
H A D | call.c | 180 ternaryfunc call = Py_TYPE(callable)->tp_call; in _PyObject_MakeTpCall() 316 ternaryfunc call; in _PyObject_Call()
|
H A D | abstract.c | 846 (*(ternaryfunc*)(& ((char*)nb_methods)[slot])) 973 ternaryfunc slotv; in ternary_op() 981 ternaryfunc slotw; in ternary_op() 1020 ternaryfunc slotz = NB_TERNOP(mz, op_slot); in ternary_op() 1229 ternaryfunc slot = NB_TERNOP(mv, iop_slot); in ternary_iop()
|
H A D | descrobject.c | 765 (ternaryfunc)classmethoddescr_call, /* tp_call */ 876 (ternaryfunc)wrapperdescr_call, /* tp_call */ 1427 (ternaryfunc)wrapper_call, /* tp_call */
|
H A D | complexobject.c | 1045 (ternaryfunc)complex_pow, /* nb_power */
|
H A D | typeobject.c | 4410 (ternaryfunc)type_call, /* tp_call */ 6637 for type object slots (e.g. binaryfunc, ternaryfunc, etc.). There's a 6709 ternaryfunc func = (ternaryfunc)wrapped; in wrap_ternaryfunc() 6723 ternaryfunc func = (ternaryfunc)wrapped; in wrap_ternaryfunc_r() 6989 ternaryfunc func = (ternaryfunc)wrapped; in wrap_call()
|
/third_party/python/Include/ |
H A D | object.h | 198 typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *); typedef
|
/third_party/python/Modules/ |
H A D | _functoolsmodule.c | 75 if (Py_TYPE(func)->tp_call == (ternaryfunc)partial_call) { in partial_new()
|
H A D | _asynciomodule.c | 1871 .tp_call = (ternaryfunc)TaskStepMethWrapper_call,
|
H A D | _testcapimodule.c | 1106 ternaryfunc tp_call = PyType_GetSlot(&PyLong_Type, Py_tp_call); in test_get_statictype_slots()
|
/third_party/skia/third_party/externals/libwebp/swig/ |
H A 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/Modules/_decimal/ |
H A D | _decimal.c | 2264 static ternaryfunc _py_long_power; 4874 (ternaryfunc) nm_mpd_qpow, 4892 0, /* ternaryfunc nb_inplace_power; */
|
/third_party/python/Modules/_ctypes/ |
H A D | _ctypes.c | 4324 (ternaryfunc)PyCFuncPtr_call, /* tp_call */
|
Completed in 64 milliseconds