HomeSort by: relevance | last modified time | path
    Searched defs:Exit (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/sys/external/bsd/gnu-efi/dist/lib/
exit.c 1 /* $NetBSD: exit.c,v 1.1.1.1 2018/08/16 18:17:47 jmcneill Exp $ */
6 Exit(
12 uefi_call_wrapper(BS->Exit,
19 // Uh oh, Exit() returned?!
  /src/external/gpl2/groff/dist/contrib/gdiffmk/
gdiffmk.sh 58 --version Print version information on the standard output and exit.
61 exit 255
65 function Exit {
73 exit ${exitcode}
79 # If not found or not readable, print message and exit with EXIT_CODE.
89 Exit $1 "File \`$2' not found."
93 Exit $1 "File \`$2' not readable."
101 # If unable to create or write, print message and exit with EXIT_CODE.
113 Exit $1 "File \`$2' not created; " \
116 Exit $1 "File \`$2' not writeable.
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SnippetRepetitor.cpp 62 auto Exit = Filler.addBasicBlock();
85 // Set up the exit basic block.
86 Loop.MBB->addSuccessor(Exit.MBB, BranchProbability::getZero());
87 Exit.addReturn();
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Process.cpp 96 void Process::Exit(int RetCode, bool NoCleanup) {
103 ::exit(RetCode);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlanVerifier.cpp 97 const VPBlockBase *Exit = Region->getExit();
99 // Entry and Exit shouldn't have any predecessor/successor, respectively.
101 assert(!Exit->getNumSuccessors() && "Region exit has successors.");
103 (void)Exit;
  /src/usr.sbin/rbootd/
rbootd.c 153 Exit(0);
160 (void) signal(SIGINT, Exit);
161 (void) signal(SIGTERM, Exit);
168 Exit(0);
178 Exit(0);
186 Exit(0);
188 Exit(0);
192 * If an error is encountered, a message is displayed and Exit()
214 Exit(0);
321 ** Exit -- Log an error message and exit
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 85 // There is no BlockEntrance corresponding to the exit block as well, so
123 const CFGBlock *Exit = BE.getDst();
124 if (Exit->empty())
126 const CFGElement &CE = Exit->front();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineLoopUtils.cpp 35 MachineBasicBlock *Exit = *Loop->succ_begin();
36 if (Exit == Loop)
37 Exit = *std::next(Loop->succ_begin());
115 Loop->replaceSuccessor(Exit, NewBB);
116 Exit->replacePhiUsesWith(Loop, NewBB);
117 NewBB->addSuccessor(Exit);
125 TII->insertBranch(*Loop, TBB == Exit ? NewBB : TBB,
126 FBB == Exit ? NewBB : FBB, Cond, DL);
128 TII->insertBranch(*NewBB, Exit, nullptr, {}, DL);
SpillPlacement.h 79 /// exit.
82 PrefReg, ///< Block entry/exit prefers a register.
83 PrefSpill, ///< Block entry/exit prefers a stack slot.
88 /// BlockConstraint - Entry and exit constraints for a basic block.
92 BorderConstraint Exit : 8; ///< Constraint on block exit.
120 /// Entry = Exit = PrefSpill, and ChangesValue = false.
ModuloSchedule.cpp 316 // Fix any Phi nodes in the loop exit block.
323 // Add a branch to the loop exit.
1844 MachineBasicBlock *Exit = *BB->succ_begin();
1845 if (Exit == BB)
1846 Exit = *std::next(BB->succ_begin());
1869 BB->replaceSuccessor(Exit, NewBB);
1870 Exit->replacePhiUsesWith(BB, NewBB);
1871 NewBB->addSuccessor(Exit);
1879 TII->insertBranch(*BB, TBB == Exit ? NewBB : TBB, FBB == Exit ? NewBB : FBB
    [all...]
  /src/external/bsd/zstd/dist/tests/gzip/
init.sh 34 # Set the exit code 0 for success, 77 for skipped, or 1 or other for failure.
35 # Use the skip_ and fail_ functions to print a diagnostic and then exit
36 # with the corresponding exit code.
37 # Exit $?
58 # $ exit
63 # hoops to get the right exit status transported through the handler.
64 # So use 'Exit STATUS' instead of 'exit STATUS' inside of the tests.
67 Exit () { set +e; (exit $1); exit $1;
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_fdr_log_writer.h 125 Exit = 0x01,
  /src/usr.bin/telnet/
utilities.c 871 Exit(int returnCode)
874 exit(returnCode);
881 exit(returnCode);
  /src/external/bsd/ntp/dist/adjtimed/
adjtimed.c 56 void Exit (int);
98 exit(1);
103 exit(0);
132 exit(1);
156 exit(1);
159 exit(0);
172 Exit(2);
189 Exit(1);
194 Exit(1);
200 Exit(1)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIModeRegister.cpp 88 // The Status that represents the mode register settings on exit from this
90 Status Exit;
92 // The Status that represents the intersection of exit Mode register settings
100 // A flag to indicate whether an Exit value has been set (we can't tell by
101 // examining the Exit value itself as all values may be valid results).
215 // when predecessor exit values are known), and move the insertion point to
220 // - on exit we have set the Require, Change, and initial Exit modes.
315 NewInfo->Exit = NewInfo->Change;
320 // value provided by all predecessor blocks. If the Exit value for the bloc
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86CallFrameOptimization.cpp 110 enum InstClassification { Convert, Skip, Exit };
283 return Exit;
292 return ImmOp.getImm() == 0 ? Convert : Exit;
298 return ImmOp.getImm() == -1 ? Convert : Exit;
333 return Exit;
342 return Exit;
346 return Exit;
411 for (InstClassification Classification = Skip; Classification != Exit; ++I) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 816 /// \return The insertion position in exit block
824 /// \param FinIP Insertion point for emitting Finalization code and exit call
830 /// \return The insertion position in exit block
1090 /// Exit
1094 /// Code in the header, condition block, latch and exit block must not have any
1113 BasicBlock *Exit;
1134 /// yes, branches to the body; otherwise to the exit block.
1147 /// Reaching the exit indicates no more iterations are being executed.
1148 BasicBlock *getExit() const { return Exit; }
1151 /// markers. It is separate from the exit block to ensure, analogous to th
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/lli/
lli.cpp 406 exit(1);
419 exit(1);
512 exit(1);
531 exit(1);
580 exit(1);
655 exit(1);
666 // If the program doesn't explicitly call exit, we will need the Exit
668 FunctionCallee Exit = Mod->getOrInsertFunction(
669 "exit", Type::getVoidTy(Context), Type::getInt32Ty(Context))
    [all...]
  /src/sbin/dump/
tape.c 211 Exit(X_REWRITE);
595 Exit(X_ABORT);
637 Exit(X_FINOK);
639 Exit(X_ABORT);
644 Exit(X_ABORT);
728 Exit(X_ABORT);
732 Exit(int status)
738 exit(status);
783 Exit(X_FINOK);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
RegionInfoImpl.h 8 // Detects single entry single exit regions in the control flow graph.
44 RegionBase<Tr>::RegionBase(BlockT *Entry, BlockT *Exit,
47 : RegionNodeBase<Tr>(Parent, Entry, 1), RI(RInfo), DT(dt), exit(Exit) {}
63 assert(exit && "No exit to replace!");
64 exit = BB;
110 BlockT *entry = getEntry(), *exit = getExit();
113 if (!exit)
117 !(DT->dominates(exit, BB) && DT->dominates(entry, exit)))
205 BlockT *exit = getExit(); local
259 BlockT *entry = getEntry(), *exit = getExit(); local
280 BlockT *exit = getExit(); local
697 BlockT *exit = N->getBlock(); local
    [all...]
BlockFrequencyInfoImpl.h 306 /// an early exit edge jumps out of.
351 /// All edges in the original function are 32-bit. However, exit edges from
352 /// loop packages are taken from 64-bit exit masses, so we need 64-bits of
357 /// Is this a local edge within the loop, an exit from the loop, or a
360 enum DistType { Local, Exit, Backedge };
392 add(Node, Amount, Weight::Exit);
445 /// edge is local/exit/backedge is in the context of LoopHead. Otherwise,
766 /// loop header, or \a Weight::Exit, any successor outside the loop.
798 /// mass in a loop, except that there are no exit or backedge edges.
844 /// mass for each block (and each exit, and the total backedge mas
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
IVDescriptors.cpp 112 /// Compute the minimal bit width needed to represent a reduction whose exit
113 /// instruction is given by Exit.
114 static std::pair<Type *, bool> computeRecurrenceType(Instruction *Exit,
119 const DataLayout &DL = Exit->getModule()->getDataLayout();
120 uint64_t MaxBitWidth = DL.getTypeSizeInBits(Exit->getType());
124 // of the exit instruction, rounding up to the nearest power of two. If the
128 auto Mask = DB->getDemandedBits(Exit);
132 if (MaxBitWidth == DL.getTypeSizeInBits(Exit->getType()) && AC && DT) {
136 auto NumSignBits = ComputeNumSignBits(Exit, DL, 0, AC, nullptr, DT);
137 auto NumTypeBits = DL.getTypeSizeInBits(Exit->getType())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 193 /// Transforms the control flow graph on one single entry/exit region
215 /// Control flow is expressed as a branch where the true exit goes into the
216 /// "Then"/"Else" region, while the false exit skips the region
428 // Test for exit as back edge
429 BasicBlock *Exit = N->getNodeAs<Region>()->getExit();
430 if (Visited.count(Exit))
431 Loops[Exit] = N->getEntry();
498 // It's an exit from a sub region
688 /// Let node exit(s) point to NewExit
696 // Find all the edges from the sub region to the exit
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 1457 /// Only the exit block should end with a return statement.
1687 /// entry point, and one exit point.
1697 Exit = new (A) BasicBlock(A);
1699 Exit->addArgument(V);
1700 Exit->setTerminator(new (A) Return(V));
1702 add(Exit);
1707 // TODO: set entry and exit!
1713 bool valid() const { return Entry && Exit && Blocks.size() > 0; }
1731 const BasicBlock *exit() const { return Exit; } function in class:clang::threadSafety::SCFG
1732 BasicBlock *exit() { return Exit; } function in class:clang::threadSafety::SCFG
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.h 64 virtual void Exit(CodeGenFunction &CGF) {}
1711 /// \a D that should be of the form 'target [{enter|exit} data | update]'.
2468 /// \a D that should be of the form 'target [{enter|exit} data | update]'.

Completed in 46 milliseconds

1 2