| /netbsd-src/games/robots/ |
| H A D | play_level.c | 74 while (!Dead && Num_robots > 0) { in play_level() 82 Dead = true; in play_level() 83 if (!Dead) in play_level() 98 if (!Dead) { in play_level()
|
| H A D | move_robs.c | 89 Dead = true; in move_robots() 113 if (Dead || Num_robots <= 0) in move_robots()
|
| H A D | extern.c | 48 bool Dead; /* Player is now dead */ variable
|
| H A D | init_field.c | 83 Dead = false; in init_field()
|
| H A D | robots.h | 89 extern bool Dead, Full_clear, Jump, Newscore, Real_time, Running,
|
| H A D | main.c | 176 for (Level = Start_level; !Dead; Level++) { in main()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | LiveRangeEdit.cpp | 186 SmallVectorImpl<MachineInstr*> &Dead) { in foldAsLoad() argument 239 Dead.push_back(DefMI); in foldAsLoad() 393 void LiveRangeEdit::eliminateDeadDefs(SmallVectorImpl<MachineInstr *> &Dead, in eliminateDeadDefs() argument 400 while (!Dead.empty()) in eliminateDeadDefs() 401 eliminateDeadDef(Dead.pop_back_val(), ToShrink, AA); in eliminateDeadDefs() 409 if (foldAsLoad(LI, Dead)) in eliminateDeadDefs() 414 if (!LIS.shrinkToUses(LI, &Dead)) in eliminateDeadDefs()
|
| H A D | ReachingDefAnalysis.cpp | 645 InstSet &Dead) const { in collectKilledOperands() 646 Dead.insert(MI); in collectKilledOperands() 647 auto IsDead = [this, &Dead](MachineInstr *Def, MCRegister PhysReg) { in collectKilledOperands() 664 return llvm::set_is_subset(Uses, Dead); in collectKilledOperands() 672 collectKilledOperands(Def, Dead); in collectKilledOperands()
|
| H A D | RDFLiveness.cpp | 301 return DA.Addr->getFlags() & NodeAttrs::Dead; in getAllReachingDefs() 430 bool IsDead = DefA.Addr->getFlags() & NodeAttrs::Dead; in getAllReachedUses() 511 bool IsDead = DA.Addr->getFlags() & NodeAttrs::Dead; in computePhiInfo()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| H A D | SimplifyIndVar.h | 53 SmallVectorImpl<WeakTrackingVH> &Dead, 60 SmallVectorImpl<WeakTrackingVH> &Dead);
|
| /netbsd-src/usr.bin/calendar/calendars/ |
| H A D | calendar.music | 21 01/31 The Grateful Dead are busted in New Orleans, 1970 49 03/08 Ron "Pigpen" McKernan (Grateful Dead) dies in California, 1973 119 08/01 Birth of Jerome "Jerry" Garcia (Grateful Dead), 1942 122 08/09 Death of Jerome "Jerry" Garcia (Grateful Dead), 1995 133 09/08 Ron "Pigpen" McKernan (Grateful Dead) is born in San Bruno, 153 10/16 Bob Weir (Grateful Dead) is born in San Francisco, 1947
|
| H A D | calendar.lotr | 9 02/26 Aragorn takes the Paths of the Dead (LOTR)
|
| /netbsd-src/crypto/dist/ipsec-tools/src/racoon/rfc/ |
| H A D | rfc3706.txt | 14 A Traffic-Based Method of Detecting Dead Internet 31 The method, called Dead Peer Detection (DPD) uses IPSec traffic 60 RFC 3706 Detecting Dead IKE Peers February 2004 107 practice of those implementations. This scheme, called Dead Peer 116 RFC 3706 Detecting Dead IKE Peers February 2004 172 RFC 3706 Detecting Dead IKE Peers February 2004 228 RFC 3706 Detecting Dead IKE Peers February 2004 284 RFC 3706 Detecting Dead IKE Peers February 2004 340 RFC 3706 Detecting Dead IKE Peers February 2004 396 RFC 3706 Detecting Dead IKE Peers February 2004 [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | LiveRangeEdit.h | 107 bool foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr *> &Dead); 246 void eliminateDeadDefs(SmallVectorImpl<MachineInstr *> &Dead,
|
| H A D | MachineInstrBuilder.h | 50 Dead = 0x10, enumerator 105 flags & RegState::Dead, 512 return B ? RegState::Dead : 0; in getDeadRegState()
|
| H A D | ReachingDefAnalysis.h | 220 void collectKilledOperands(MachineInstr *MI, InstSet &Dead) const;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMLowOverheadLoops.cpp | 547 for (auto *Dead : Killed) in INITIALIZE_PASS() local 548 BasicBlocks.insert(Dead->getParent()); in INITIALIZE_PASS() 565 for (auto *Dead : Killed) { in INITIALIZE_PASS() local 566 if (MachineOperand *MO = Dead->findRegisterUseOperand(ARM::ITSTATE)) { in INITIALIZE_PASS() 567 MachineInstr *IT = RDA.getMIOperand(Dead, *MO); in INITIALIZE_PASS() 570 CurrentBlock.erase(Dead); in INITIALIZE_PASS() 598 LLVM_DEBUG(for (auto *Dead : Killed) in INITIALIZE_PASS() 599 dbgs() << " - " << *Dead); in INITIALIZE_PASS()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| H A D | GlobalOpt.cpp | 208 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead; in CleanupPointerRootUsers() local 221 Dead.push_back(std::make_pair(I, SI)); in CleanupPointerRootUsers() 229 Dead.push_back(std::make_pair(I, MSI)); in CleanupPointerRootUsers() 238 Dead.push_back(std::make_pair(I, MTI)); in CleanupPointerRootUsers() 249 Dead.clear(); in CleanupPointerRootUsers() 256 for (int i = 0, e = Dead.size(); i != e; ++i) { in CleanupPointerRootUsers() 257 if (IsSafeComputationToRemove(Dead[i].first, GetTLI)) { in CleanupPointerRootUsers() 258 Dead[i].second->eraseFromParent(); in CleanupPointerRootUsers() 259 Instruction *I = Dead[i].first; in CleanupPointerRootUsers() 1296 bool Dead; in deleteIfDead() local [all …]
|
| /netbsd-src/games/quiz/datfiles/ |
| H A D | flowers | 12 Dead leaves:Melancholy
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
| H A D | Passes.rst | 380 ``-adce``: Aggressive Dead Code Elimination 465 ``-dce``: Dead Code Elimination 468 Dead code elimination is similar to :ref:`dead instruction elimination 472 ``-deadargelim``: Dead Argument Elimination 475 This pass deletes dead arguments from internal functions. Dead argument 483 ``-deadtypeelim``: Dead Type Elimination 492 ``-die``: Dead Instruction Elimination 495 Dead instruction elimination performs a single pass over the function, removing 498 ``-dse``: Dead Store Elimination 518 ``-globaldce``: Dead Global Elimination [all …]
|
| H A D | Lexicon.rst | 16 Aggressive Dead Code Elimination 93 Dead Store Elimination
|
| /netbsd-src/games/adventure/ |
| H A D | glorkz | 89 46 Dead end 90 47 Dead end 91 48 Dead end 97 54 Dead end 99 56 Dead end 103 58 Dead end 112 63 Dead end 137 73 Dead end crawl. 149 81 Dead end 150 82 Dead end [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyIndVar.cpp | 67 SmallVectorImpl<WeakTrackingVH> &Dead) in SimplifyIndvar() argument 69 DeadInsts(Dead), Changed(false) { in SimplifyIndvar() 963 SmallVectorImpl<WeakTrackingVH> &Dead, in simplifyUsersOfIV() argument 966 Rewriter, Dead); in simplifyUsersOfIV() 975 SmallVectorImpl<WeakTrackingVH> &Dead) { in simplifyLoopIVs() argument 983 simplifyUsersOfIV(cast<PHINode>(I), SE, DT, LI, TTI, Dead, Rewriter); in simplifyLoopIVs()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZElimCompare.cpp | 236 MIB.addReg(SystemZ::CC, RegState::ImplicitDefine | RegState::Dead); in convertToBRCT() 682 RegState::ImplicitDefine | RegState::Dead); in fuseCompareOperations()
|
| /netbsd-src/games/phantasia/ |
| H A D | README | 33 - Dead players can be resurrected by the 'wizard'.
|