Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-wrapper.swig81 if (!pfunc.IsAllocated())
124 if (!pfunc.IsAllocated()) {
127 if (!pfunc.IsAllocated())
169 if (!pfunc.IsAllocated())
200 if (!pfunc.IsAllocated())
357 if (!pfunc.IsAllocated())
365 result = pfunc();
402 if (!pfunc.IsAllocated())
426 if (!pfunc.IsAllocated())
429 PythonObject result = sym_ctx ? pfunc(ToSWIGWrapper(*sym_ctx)) : pfunc();
[all …]
/llvm-project-15.0.7/compiler-rt/test/builtins/Unit/
H A Denable_execute_stack_test.c11 typedef int (*pfunc)(void); typedef
41 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); in main()
48 pfunc f2 = (pfunc)memcpy_f(execution_buffer, func2, 128); in main()
H A 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()
/llvm-project-15.0.7/clang/test/Sema/
H A Darray-constraint.c30 typedef int (*pfunc)(void); typedef
32 pfunc xx(int f[](void)) { // expected-error {{'f' declared as array of functions}} in xx()
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dtemp_arg_nontype.cpp159 static int pfunc(float);
162 X0<X1::pfunc> x01; in test_X0_X1()
/llvm-project-15.0.7/mlir/lib/Target/LLVMIR/
H A DModuleTranslation.cpp878 if (llvm::Constant *pfunc = getLLVMConstant(ty, func.getPersonalityAttr(), in convertOneFunction() local
880 llvmFunc->setPersonalityFn(pfunc); in convertOneFunction()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp761 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>( in GetMaxPositionalArgumentsForCallable() local
763 if (!pfunc.IsAllocated()) { in GetMaxPositionalArgumentsForCallable()
768 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo(); in GetMaxPositionalArgumentsForCallable()