Home
last modified time | relevance | path

Searched refs:FuncPointer (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang/test/Sema/
Dattr-nocf_check.c5 typedef void (*FuncPointer)(void); typedef
17 void testNoCfCheckMismatch(FuncPointer f) { in testNoCfCheckMismatch()
Dattr-nocf_check.cpp5 typedef void (*FuncPointer)(void); typedef
17 void testNoCfCheckMismatch(FuncPointer f) { in testNoCfCheckMismatch()
/external/llvm-project/flang/lib/Evaluate/
Dintrinsics-library.cpp96 template <typename TR, typename... TA> using FuncPointer = TR (*)(TA...); typedef
99 struct FuncTypeAnalyzer<FuncPointer<HostTR, HostTA...>> {
167 Expr<SomeType> ApplyHostFunction(FuncPointer<HostTR, HostTA...> func, in ApplyHostFunction()
207 using F = FuncPointer<HostT, HostT>;
208 using F2 = FuncPointer<HostT, HostT, HostT>;
209 using ComplexToRealF = FuncPointer<HostT, const std::complex<HostT> &>;
253 using F = FuncPointer<std::complex<HostT>, const std::complex<HostT> &>;
254 using F2 = FuncPointer<std::complex<HostT>, const std::complex<HostT> &,
256 using F2A = FuncPointer<std::complex<HostT>, const HostT &,
258 using F2B = FuncPointer<std::complex<HostT>, const std::complex<HostT> &,
/external/llvm-project/llvm/test/CodeGen/X86/
Dnocf_check.ll9 ;; typedef void(*FuncPointer)(void); ;;
10 ;; void NoCfCheckCall(FuncPointer f) { ;;
11 ;; __attribute__((nocf_check)) FuncPointer p = f; ;;