Home
last modified time | relevance | path

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

123456

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp4736c.C31 class Main : public Rep_1, virtual public DVBase {
33 virtual ~Main() { did_fail = 0; } in ~Main()
37 Main* m; in main()
39 delete new Main; in main() local
43 delete (Rep*)(Rep_1*)new Main; in main()
47 delete (DVBase*)new Main; in main()
51 delete (VBaseMain*)(DVBase*)new Main; in main()
55 delete (Rep*)(Rep_2*)(DVBase*)new Main; in main()
59 delete (OtherVBase*)(DVBase*)new Main; in main()
H A Dp4736b.C29 class Main : public Rep_1, virtual public DVBase {
35 Main m; in main()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DStratifiedSets.h344 bool add(const T &Main) { in add() argument
345 if (get(Main)) in add()
349 return addAtMerging(Main, NewIndex); in add()
355 bool addAbove(const T &Main, const T &ToAdd) { in addAbove() argument
356 assert(has(Main)); in addAbove()
357 auto Index = *indexOf(Main); in addAbove()
368 bool addBelow(const T &Main, const T &ToAdd) { in addBelow() argument
369 assert(has(Main)); in addBelow()
370 auto Index = *indexOf(Main); in addBelow()
378 bool addWith(const T &Main, const T &ToAdd) { in addWith() argument
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dvtable1.C17 struct Main { struct
21 struct Other : public Main, public B { argument
25 struct D : public Main, public B, public Other {
/openbsd-src/gnu/usr.bin/perl/dist/Thread-Semaphore/t/
H A D05_force.t44 is($token++, 1, 'Main has semaphore');
48 is($token++, 2, 'Main still has semaphore');
52 is($token, 4, 'Main re-got semaphore');
56 ok(1, 'Main done');
H A D01_basic.t56 is($token++, 0, 'Main has semaphore');
60 is($token++, 2, 'Main got semaphore');
64 is($token++, 4, 'Main re-got semaphore');
72 ok(1, 'Main done');
H A D06_timed.t56 is($token++, 0, 'Main has semaphore');
60 is($token++, 2, 'Main got semaphore');
64 is($token++, 4, 'Main re-got semaphore');
72 ok(1, 'Main done');
H A D04_nonblocking.t48 is($token++, 0, 'Main has semaphore');
55 is($token++, 2, 'Main got semaphore');
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp231 Function *Main = nullptr; in runOnModule() local
248 Main = &F; in runOnModule()
260 ConstantExpr::getBitCast(Main, PointerType::get(MainTy, 0)); in runOnModule()
288 Main->setName("__original_main"); in runOnModule()
292 if (Main->isDeclaration()) { in runOnModule()
300 MainWrapper->setLinkage(Main->getLinkage()); in runOnModule()
301 MainWrapper->setVisibility(Main->getVisibility()); in runOnModule()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DLLJIT.h71 JITDylib &getMainJITDylib() { return *Main; } in getMainJITDylib()
97 return addIRModule(*Main, std::move(TSM)); in addIRModule()
108 return addObjectFile(*Main, std::move(Obj)); in addObjectFile()
127 return lookupLinkerMangled(*Main, Name); in lookupLinkerMangled()
137 return lookup(*Main, UnmangledName); in lookup()
205 JITDylib *Main = nullptr; variable
239 return addLazyIRModule(*Main, std::move(M)); in addLazyIRModule()
/openbsd-src/gnu/usr.bin/binutils/ld/scripttempl/
H A Dmmo.sc4 ENTRY(Main)
58 ${RELOCATING+Main = DEFINED (Main) ? Main : (DEFINED (_start) ? _start : ADDR (.text));}
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/scripttempl/
H A Dmmo.sc4 ENTRY(Main)
58 ${RELOCATING+Main = DEFINED (Main) ? Main : (DEFINED (_start) ? _start : ADDR (.text));}
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DTargetExecutionUtils.cpp16 int runAsMain(int (*Main)(int, char *[]), ArrayRef<std::string> Args, in runAsMain()
39 return Main(Args.size() + !!ProgramName, ArgV.data()); in runAsMain()
/openbsd-src/gnu/usr.bin/perl/dist/Carp/
H A DREADME29 Andrew Main (Zefram) <zefram@fysh.org> divested Carp into an independent
36 Copyright (C) 2011, 2012, 2013 Andrew Main (Zefram) <zefram@fysh.org>
/openbsd-src/gnu/usr.bin/perl/dist/threads/t/
H A Dblocks.t104 ok($mthr, 'Main thread');
107 ok($mthr->join() == 42, 'Main join');
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A D04-xs-rpath-darwin.t9 package Main;
47 my $self = Main->new(
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp205 : Base(B), Main{AI.Inst}, IsHvx(Hvx), IsLoad(Load) {} in MoveGroup()
207 InstList Main; // Main group of instructions. member
308 for (Instruction *I : MG.Main) in operator <<()
702 assert(!Move.Main.empty() && "Move group should have non-empty Main"); in createLoadGroups()
707 Instruction *Base = Move.Main.front(); in createLoadGroups()
724 Move.Main.push_back(Info.Inst); in createLoadGroups()
739 erase_if(LoadGroups, [](const MoveGroup &G) { return G.Main.size() <= 1; }); in createLoadGroups()
749 assert(!Move.Main.empty() && "Move group should have non-empty Main"); in createStoreGroups()
760 Instruction *Base = Move.Main.front(); in createStoreGroups()
763 if (!HVC.isSafeToMoveBeforeInBB(*Info.Inst, Base->getIterator(), Move.Main)) in createStoreGroups()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Testing/
H A DTestAST.cpp119 const FrontendInputFile &Main = Clang->getFrontendOpts().Inputs.front(); in TestAST() local
120 if (!Action->BeginSourceFile(*Clang, Main)) { in TestAST()
/openbsd-src/gnu/gcc/gcc/config/mmix/
H A Dcrti.asm53 .global Main symbol
61 Main SETL $255,32 label
/openbsd-src/gnu/usr.bin/gcc/gcc/config/mmix/
H A Dcrti.asm53 .global Main symbol
61 Main SETL $255,32 label
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DTargetExecutionUtils.h31 int runAsMain(int (*Main)(int, char *[]), ArrayRef<std::string> Args,
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang-tools-extra/pseudo/gen/
H A DBUILD.gn8 sources = [ "Main.cpp" ]
/openbsd-src/gnu/llvm/llvm/lib/TableGen/
H A DCMakeLists.txt5 Main.cpp
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/llvm/lib/TableGen/
H A DBUILD.gn8 "Main.cpp",
/openbsd-src/gnu/llvm/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp186 auto Main = in main() local
189 return runAsMain(Main, InputArgv, StringRef(InputFiles.front())); in main()

123456