Home
last modified time | relevance | path

Searched refs:pfunc (Results 1 – 25 of 25) sorted by relevance

/external/llvm-project/lldb/bindings/python/
Dpython-wrapper.swig59 … auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_function_name, dict);
62 if (auto arg_info = pfunc.GetArgInfo())
73 return pfunc.Call(frame_arg, bp_loc_arg, dict);
77 return pfunc.Call(frame_arg, bp_loc_arg, args_arg, dict);
108 … auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_function_name, dict);
110 if (!pfunc.IsAllocated())
115 PythonObject result = pfunc(frame_arg, wp_arg, dict);
162 PythonCallable pfunc(PyRefType::Borrowed, pfunc_impl);
164 if (!pfunc.IsAllocated())
166 pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>(python_function_name, dict);
[all …]
/external/llvm-project/compiler-rt/test/builtins/Unit/
Denable_execute_stack_test.c11 typedef int (*pfunc)(void); typedef
37 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); in main()
44 pfunc f2 = (pfunc)memcpy_f(execution_buffer, func2, 128); in main()
Dclear_cache_test.c19 typedef int (*pfunc)(void); typedef
90 pfunc f1 = (pfunc)realign_f(execution_buffer, func1, kSize); in main()
97 pfunc f2 = (pfunc)realign_f(execution_buffer, func2, kSize); in main()
/external/compiler-rt/test/builtins/Unit/
Denable_execute_stack_test.c36 typedef int (*pfunc)(void); typedef
68 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); in main()
74 pfunc f2 = (pfunc)memcpy_f(execution_buffer, func2, 128); in main()
Dclear_cache_test.c29 typedef int (*pfunc)(void); typedef
73 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); in main()
79 pfunc f2 = (pfunc)memcpy_f(execution_buffer, func2, 128); in main()
/external/llvm-project/clang/test/Sema/
Darray-constraint.c30 typedef int (*pfunc)(void); typedef
32 pfunc xx(int f[](void)) { // expected-error {{'f' declared as array of functions}} in xx()
/external/clang/test/Sema/
Darray-constraint.c30 typedef int (*pfunc)(void); typedef
32 pfunc xx(int f[](void)) { // expected-error {{'f' declared as array of functions}} in xx()
/external/python/cpython3/Modules/
Dxxlimited.c244 Null_Type_slots[0].pfunc = &PyBaseObject_Type; in xx_modexec()
245 Null_Type_slots[1].pfunc = PyType_GenericNew; in xx_modexec()
246 Str_Type_slots[0].pfunc = &PyUnicode_Type; in xx_modexec()
D_testmultiphase.c354 Str_Type_slots[0].pfunc = &PyUnicode_Type; in execfunc()
D_ssl.c6054 sslerror_type_slots[0].pfunc = PyExc_OSError; in PyInit__ssl()
/external/tcpdump/
Dprint-ppp.c419 int (*pfunc)(netdissect_options *, const u_char *, int); in handle_ctrl_proto() local
477 pfunc = print_lcp_config_options; in handle_ctrl_proto()
480 pfunc = print_ipcp_config_options; in handle_ctrl_proto()
483 pfunc = print_ip6cp_config_options; in handle_ctrl_proto()
486 pfunc = print_ccp_config_options; in handle_ctrl_proto()
489 pfunc = print_bacp_config_options; in handle_ctrl_proto()
496 pfunc = NULL; in handle_ctrl_proto()
500 if (pfunc == NULL) /* catch the above null pointer if unknown CP */ in handle_ctrl_proto()
503 if ((j = (*pfunc)(ndo, tptr, len)) == 0) in handle_ctrl_proto()
Dprint-lldp.c1317 const char * (*pfunc)(netdissect_options *, const u_char *); in lldp_network_addr_print() local
1328 pfunc = getname; in lldp_network_addr_print()
1334 pfunc = getname6; in lldp_network_addr_print()
1339 pfunc = etheraddr_string; in lldp_network_addr_print()
1342 pfunc = NULL; in lldp_network_addr_print()
1346 if (!pfunc) { in lldp_network_addr_print()
1351 tok2str(af_values, "Unknown", af), af, (*pfunc)(ndo, tptr+1)); in lldp_network_addr_print()
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_remote_master.cc127 ::grpc::Status (MasterServiceStub::*pfunc)( in CallWithRetry()
153 s = FromGrpcStatus((stub_.get()->*pfunc)(&ctx, *request, response));
/external/clang/test/SemaTemplate/
Dtemp_arg_nontype.cpp159 static int pfunc(float);
162 X0<X1::pfunc> x01; in test_X0_X1()
/external/llvm-project/clang/test/SemaTemplate/
Dtemp_arg_nontype.cpp159 static int pfunc(float);
162 X0<X1::pfunc> x01; in test_X0_X1()
/external/python/cpython2/Lib/
Dtrace.py285 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) in calls:
294 print " %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc)
/external/python/cpython2/Python/
Dceval.c3026 PyObject **pfunc, *func, **sp; in PyEval_EvalFrameEx() local
3032 pfunc = stack_pointer - n - 1; in PyEval_EvalFrameEx()
3033 func = *pfunc; in PyEval_EvalFrameEx()
3041 Py_DECREF(*pfunc); in PyEval_EvalFrameEx()
3042 *pfunc = self; in PyEval_EvalFrameEx()
3053 while (stack_pointer > pfunc) { in PyEval_EvalFrameEx()
4340 PyObject **pfunc = (*pp_stack) - n - 1; in call_function() local
4341 PyObject *func = *pfunc; in call_function()
4385 Py_SETREF(*pfunc, self); in call_function()
4403 while ((*pp_stack) > pfunc) { in call_function()
/external/python/cpython3/Lib/
Dtrace.py226 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
236 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
/external/python/cpython3/Modules/_decimal/tests/
Ddeccheck.py581 pfunc = "p_func: %s(" % t.funcname
588 pfunc = "p_func: %s.%s(" % (repr(pself), t.funcname)
597 err += pfunc
/external/python/cpython3/Include/
Dobject.h198 void *pfunc; /* function pointer */ member
/external/llvm-project/mlir/lib/Target/LLVMIR/
DModuleTranslation.cpp943 if (llvm::Constant *pfunc = in convertOneFunction() local
945 llvmFunc->setPersonalityFn(pfunc); in convertOneFunction()
/external/python/cpython3/Doc/c-api/
Dtype.rst260 .. c:member:: void *PyType_Slot.pfunc
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp861 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>( in GetMaxPositionalArgumentsForCallable() local
863 if (!pfunc.IsAllocated()) { in GetMaxPositionalArgumentsForCallable()
868 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo(); in GetMaxPositionalArgumentsForCallable()
/external/python/cpython3/Objects/
Dtypeobject.c2890 for (const PyMemberDef *memb = slot->pfunc; memb->name != NULL; memb++) { in PyType_FromModuleAndSpec()
2951 base = slot->pfunc; in PyType_FromModuleAndSpec()
2953 bases = slot->pfunc; in PyType_FromModuleAndSpec()
3018 const char *old_doc = _PyType_DocWithoutSignature(type->tp_name, slot->pfunc); in PyType_FromModuleAndSpec()
3032 memcpy(PyHeapType_GET_MEMBERS(res), slot->pfunc, len); in PyType_FromModuleAndSpec()
3037 *(void**)(res_start + slotoffsets[slot->slot]) = slot->pfunc; in PyType_FromModuleAndSpec()
/external/python/cpython3/Python/
Dceval.c5061 PyObject **pfunc = (*pp_stack) - oparg - 1; in Py_LOCAL_INLINE() local
5062 PyObject *func = *pfunc; in Py_LOCAL_INLINE()
5078 while ((*pp_stack) > pfunc) { in Py_LOCAL_INLINE()