Searched defs:Exit (Results 1 - 25 of 51) sorted by relevance

123

/external/valgrind/main/VEX/switchback/
H A Dbinary_switchback.pl38 sub Exit { subroutine
54 Exit 1;
142 Exit 1;
211 Exit 1;
317 Exit 1;
353 Exit 1;
373 Exit 1;
431 Exit 0;
/external/llvm/unittests/IR/
H A DVerifierTest.cpp30 BasicBlock *Exit = BasicBlock::Create(C, "exit", F); local
31 ReturnInst::Create(C, Exit);
37 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
/external/chromium_org/tools/android/common/
H A Ddaemon.cc22 void Exit(int unused) { function in namespace:__anon16409
55 signal(SIGUSR1, Exit);
/external/chromium_org/chrome/browser/ui/ash/
H A Dchrome_shell_delegate.cc93 void ChromeShellDelegate::Exit() { function in class:ChromeShellDelegate
/external/chromium_org/tools/idl_parser/
H A Didl_node.py49 def Exit(self, node): member in class:IDLSearch
137 search.Exit(self)
/external/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp124 const CFGBlock *Exit = BE.getDst(); local
125 const CFGElement &CE = Exit->front();
/external/chromium_org/chrome/browser/
H A Dchrome_browser_main_posix.cc106 // Does the appropriate call to Exit.
107 static void Exit();
121 Exit();
133 base::Bind(&ExitHandler::Exit));
148 void ExitHandler::Exit() { function in class:__anon2992::ExitHandler
230 // We really should be dead by now. For whatever reason, we're not. Exit
/external/llvm/lib/CodeGen/
H A DSpillPlacement.h85 BorderConstraint Exit : 8; ///< Constraint on block exit. member in struct:llvm::SpillPlacement::BlockConstraint
110 /// Entry = Exit = PrefSpill, and ChangesValue = false.
/external/chromium_org/ash/shell/
H A Dshell_delegate_impl.cc192 void ShellDelegateImpl::Exit() { function in class:ash::shell::ShellDelegateImpl
/external/chromium_org/ash/test/
H A Dtest_shell_delegate.cc116 void TestShellDelegate::Exit() { function in class:ash::test::TestShellDelegate
/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest1.c40 static void Exit(int rc){ function
124 Exit(1);
154 Exit(1);
183 Exit(1);
211 Exit(1);
/external/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp355 BasicBlock *Exit = BI->getSuccessor(0); local
357 if (L->contains(Exit))
358 std::swap(Exit, NewHeader);
360 assert(L->contains(NewHeader) && !L->contains(Exit) &&
475 assert(DT.getNode(Exit)->getIDom() == OrigPreheaderNode);
488 // Preserve canonical loop form, which means that 'Exit' should have only
489 // one predecessor. Note that Exit could be an exit block for multiple
492 SmallVector<BasicBlock *, 4> ExitPreds(pred_begin(Exit), pred_end(Exit));
499 if (!PredLoop || PredLoop->contains(Exit))
[all...]
H A DStructurizeCFG.cpp292 BasicBlock *Exit = N->getNodeAs<Region>()->getExit(); local
293 if (Visited.count(Exit))
294 Loops[Exit] = N->getEntry();
669 BasicBlock *Exit = ParentRegion->getExit(); local
670 DT->changeImmediateDominator(Exit, Flow);
671 addPhiValues(Flow, Exit);
672 return Exit;
800 BasicBlock *Exit = ParentRegion->getExit(); local
801 bool EntryDominatesExit = DT->dominates(ParentRegion->getEntry(), Exit);
816 changeExit(PrevNode, Exit, EntryDominatesExi
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLoopUnrollRuntime.cpp113 BasicBlock *Exit = L->getUniqueExitBlock(); local
114 assert(Exit && "Loop must have a single exit block only");
116 SmallVector<BasicBlock*, 4> Preds(pred_begin(Exit), pred_end(Exit));
117 if (!Exit->isLandingPad()) {
118 SplitBlockPredecessors(Exit, Preds, ".unr-lcssa", P);
121 SplitLandingPadPredecessors(Exit, Preds, ".unr1-lcssa", ".unr2-lcssa",
125 BranchInst::Create(Exit, NewPH, BrLoopExit, InsertPt);
H A DLoopSimplify.cpp159 static BasicBlock *rewriteLoopExitBlock(Loop *L, BasicBlock *Exit, Pass *PP) { argument
161 for (pred_iterator I = pred_begin(Exit), E = pred_end(Exit); I != E; ++I) {
174 if (Exit->isLandingPad()) {
176 SplitLandingPadPredecessors(Exit, ArrayRef<BasicBlock*>(&LoopBlocks[0],
182 NewExitBB = SplitBlockPredecessors(Exit, LoopBlocks, ".loopexit", PP);
/external/llvm/tools/lli/
H A Dlli.cpp606 // If the program doesn't explicitly call exit, we will need the Exit
608 Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context), local
642 if (Function *ExitF = dyn_cast<Function>(Exit)) {
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Runtime.cpp130 //m_isolate->Exit();
463 void CJS_Runtime::Exit() function in class:CJS_Runtime
465 if(m_isolate) m_isolate->Exit();
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessMessage.h126 static ProcessMessage Exit(lldb::tid_t tid, int status) { function in class:ProcessMessage
/external/llvm/include/llvm/Analysis/
H A DRegionInfo.h171 /// The \e Exit of a Region is the first BasicBlock that is passed after
254 /// @param Exit The exit basic block of the region.
259 Region(BasicBlock *Entry, BasicBlock *Exit, RegionInfo* RI,
520 block_iterator_wrapper(pointer Entry, pointer Exit) : super(df_begin(Entry)) argument
525 super::Visited.insert(Exit);
/external/llvm/lib/Analysis/
H A DRegionInfo.cpp54 Region::Region(BasicBlock *Entry, BasicBlock *Exit, RegionInfo* RInfo, argument
56 : RegionNode(Parent, Entry, 1), RI(RInfo), DT(dt), exit(Exit) {}
501 // Exit is the header of a loop that contains the entry. In this case,
764 BasicBlock *Exit = nullptr; local
774 Exit = R->getExit();
776 Exit = *succ_begin(BB);
778 return Exit;
780 // Get largest region that starts at Exit.
781 Region *ExitR = getRegionFor(Exit);
783 && ExitR->getParent()->getEntry() == Exit)
[all...]
/external/openssl/crypto/des/
H A Ddes.c373 int Exit=0; local
385 Exit=10;
407 Exit=9;
420 Exit=9;
479 Exit=6;
553 Exit=7;
582 Exit=6;
628 Exit=8;
643 Exit=7;
681 if (Exit) EXI
[all...]
/external/chromium_org/v8/src/
H A Dfull-codegen.h156 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::BASE_EMBEDDED
218 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::NestedBlock
233 virtual NestedStatement* Exit(int* stack_depth, int* context_length);
244 virtual NestedStatement* Exit(int* stack_depth, int* context_length);
258 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::Finally
274 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::ForIn
289 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { function in class:v8::internal::FullCodeGenerator::WithOrCatch
/external/clang/lib/CodeGen/
H A DCGCleanup.cpp498 static void ForwardPrebranchedFallthrough(llvm::BasicBlock *Exit, argument
501 // Exit is the exit block of a cleanup, so it always terminates in
503 llvm::TerminatorInst *Term = Exit->getTerminator();
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp900 BasicBlock *Exit = BasicBlock::Create(*Ctx, "exit", Fn); local
908 BranchInst::Create(Exit, PredNotNegOne, Cond, BB);
922 Builder.CreateCondBr(Cond, Exit, CounterEnd);
929 Builder.CreateBr(Exit);
932 Builder.SetInsertPoint(Exit);
/external/chromium_org/chrome/browser/ui/
H A Dbrowser_commands.cc740 void Exit() { function in namespace:chrome
741 content::RecordAction(UserMetricsAction("Exit"));

Completed in 1737 milliseconds

123