Searched defs:Fn (Results 1 - 25 of 130) sorted by relevance

123456

/external/valgrind/main/perf/
H A Dmany-xpts.c4 #define Fn(N, Np1) \ macro
18 Fn(17, 999)
19 Fn(16, 17)
20 Fn(15, 16)
21 Fn(14, 15)
22 Fn(13, 14)
23 Fn(12, 13)
24 Fn(11, 12)
25 Fn(10, 11)
26 Fn(
[all...]
/external/compiler-rt/test/msan/
H A Dwrap_indirect_calls2.cc29 typedef void (*Fn)(void); typedef
30 extern "C" Fn my_wrapper(Fn target) {
36 volatile Fn fp;
/external/libcxx/test/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/
H A Dput_long_double_en_US.pass.cpp25 typedef std::money_put<char, output_iterator<char*> > Fn; typedef
28 : public Fn
32 : Fn(refs) {}
H A Dput_long_double_fr_FR.pass.cpp27 typedef std::money_put<char, output_iterator<char*> > Fn; typedef
30 : public Fn
34 : Fn(refs) {}
H A Dput_long_double_ru_RU.pass.cpp27 typedef std::money_put<char, output_iterator<char*> > Fn; typedef
30 : public Fn
34 : Fn(refs) {}
H A Dput_long_double_zh_CN.pass.cpp25 typedef std::money_put<char, output_iterator<char*> > Fn; typedef
28 : public Fn
32 : Fn(refs) {}
H A Dput_string_en_US.pass.cpp25 typedef std::money_put<char, output_iterator<char*> > Fn; typedef
28 : public Fn
32 : Fn(refs) {}
/external/llvm/bindings/ocaml/analysis/
H A Danalysis_ocaml.c46 CAMLprim value llvm_verify_function(LLVMValueRef Fn) { argument
47 return Val_bool(LLVMVerifyFunction(Fn, LLVMReturnStatusAction) == 0);
57 CAMLprim value llvm_assert_valid_function(LLVMValueRef Fn) { argument
58 LLVMVerifyFunction(Fn, LLVMAbortProcessAction);
63 CAMLprim value llvm_view_function_cfg(LLVMValueRef Fn) { argument
64 LLVMViewFunctionCFG(Fn);
69 CAMLprim value llvm_view_function_cfg_only(LLVMValueRef Fn) { argument
70 LLVMViewFunctionCFGOnly(Fn);
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dstart-deactivated.cc29 typedef void (*Fn)(); typedef
51 ((Fn)fn)();
/external/libcxx/test/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/
H A Dget_long_double_en_US.pass.cpp25 typedef std::money_get<char, input_iterator<const char*> > Fn; typedef
28 : public Fn
32 : Fn(refs) {}
H A Dget_long_double_fr_FR.pass.cpp27 typedef std::money_get<char, input_iterator<const char*> > Fn; typedef
30 : public Fn
34 : Fn(refs) {}
H A Dget_long_double_ru_RU.pass.cpp27 typedef std::money_get<char, input_iterator<const char*> > Fn; typedef
30 : public Fn
34 : Fn(refs) {}
H A Dget_long_double_zh_CN.pass.cpp25 typedef std::money_get<char, input_iterator<const char*> > Fn; typedef
28 : public Fn
32 : Fn(refs) {}
H A Dget_string_en_US.pass.cpp25 typedef std::money_get<char, input_iterator<const char*> > Fn; typedef
28 : public Fn
32 : Fn(refs) {}
/external/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h80 bool RunSafely(function_ref<void()> Fn);
81 bool RunSafely(void (*Fn)(void*), void *UserData) { argument
82 return RunSafely([&]() { Fn(UserData); });
94 bool RunSafelyOnThread(void (*Fn)(void*), void *UserData, argument
96 return RunSafelyOnThread([&]() { Fn(UserData); }, RequestedStackSize);
/external/llvm/lib/Analysis/
H A DAnalysis.cpp96 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) { argument
98 *unwrap<Function>(Fn), Action != LLVMReturnStatusAction ? &errs()
107 void LLVMViewFunctionCFG(LLVMValueRef Fn) { argument
108 Function *F = unwrap<Function>(Fn);
112 void LLVMViewFunctionCFGOnly(LLVMValueRef Fn) { argument
113 Function *F = unwrap<Function>(Fn);
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
H A Dp1.cpp12 typedef void Fn(); typedef
13 Fn ar4[10]; // expected-error {{array of functions}}
/external/llvm/lib/Support/
H A DThreading.cpp44 void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData, argument
46 ThreadInfo Info = { Fn, UserData };
86 void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData, argument
88 struct ThreadInfo param = { Fn, UserData };
106 void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData, argument
109 Fn(UserData);
/external/llvm/lib/Transforms/Utils/
H A DLowerExpectIntrinsic.cpp66 Function *Fn = CI->getCalledFunction();
67 if (!Fn || Fn->getIntrinsicID() != Intrinsic::expect)
120 Function *Fn = CI->getCalledFunction();
121 if (!Fn || Fn->getIntrinsicID() != Intrinsic::expect)
169 Function *Fn = CI->getCalledFunction(); local
170 if (Fn && Fn->getIntrinsicID() == Intrinsic::expect) {
/external/llvm/lib/CodeGen/
H A DOptimizePHIs.cpp64 bool OptimizePHIs::runOnMachineFunction(MachineFunction &Fn) { argument
65 if (skipOptnoneFunction(*Fn.getFunction()))
68 MRI = &Fn.getRegInfo();
69 TII = Fn.getTarget().getInstrInfo();
76 for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
/external/llvm/lib/Target/Hexagon/
H A DHexagonExpandPredSpillCode.cpp66 bool runOnMachineFunction(MachineFunction &Fn) override;
73 bool HexagonExpandPredSpillCode::runOnMachineFunction(MachineFunction &Fn) { argument
78 for (MachineFunction::iterator MBBb = Fn.begin(), MBBe = Fn.end();
H A DHexagonSplitConst32AndConst64.cpp61 bool runOnMachineFunction(MachineFunction &Fn) override;
68 bool HexagonSplitConst32AndConst64::runOnMachineFunction(MachineFunction &Fn) { argument
79 for (MachineFunction::iterator MBBb = Fn.begin(), MBBe = Fn.end();
H A DHexagonSplitTFRCondSets.cpp74 bool runOnMachineFunction(MachineFunction &Fn) override;
81 bool HexagonSplitTFRCondSets::runOnMachineFunction(MachineFunction &Fn) { argument
86 for (MachineFunction::iterator MBBb = Fn.begin(), MBBe = Fn.end();
/external/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp39 bool runOnMachineFunction(MachineFunction &Fn) override;
55 bool MSP430BSel::runOnMachineFunction(MachineFunction &Fn) { argument
57 static_cast<const MSP430InstrInfo*>(Fn.getTarget().getInstrInfo());
59 Fn.RenumberBlocks();
60 BlockSizes.resize(Fn.getNumBlockIDs());
64 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
100 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
/external/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp46 bool runOnMachineFunction(MachineFunction &Fn) override;
65 bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) { argument
67 static_cast<const PPCInstrInfo*>(Fn.getTarget().getInstrInfo());
69 Fn.RenumberBlocks();
70 BlockSizes.resize(Fn.getNumBlockIDs());
74 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
110 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;

Completed in 628 milliseconds

123456