OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lastexit
(Results
1 - 4
of
4
) sorted by null
/external/dropbear/
svr-chansession.c
79
* use the svr_ses.
lastexit
struct to hold the exit, which is then compared by
107
TRACE(("using
lastexit
"));
108
exit = &svr_ses.
lastexit
;
695
if (svr_ses.
lastexit
.exitpid != -1) {
696
TRACE(("parent side: lastexitpid is %d", svr_ses.
lastexit
.exitpid))
701
if (svr_ses.childpids[i].pid == svr_ses.
lastexit
.exitpid) {
703
svr_ses.childpids[i].chansess->exit = svr_ses.
lastexit
;
704
svr_ses.
lastexit
.exitpid = -1;
1014
svr_ses.
lastexit
.exitpid = -1; /* Nothing has exited yet */
session.h
182
struct exitinfo
lastexit
;
member in struct:serversession
/external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp
225
BasicBlock *
LastExit
= Latch->getSinglePredecessor();
226
if (!
LastExit
|| !L->isLoopExiting(
LastExit
))
229
BranchInst *BI = dyn_cast<BranchInst>(
LastExit
->getTerminator());
237
<<
LastExit
->getName() << "\n");
239
// Hoist the instructions from Latch into
LastExit
.
240
LastExit
->getInstList().splice(BI, Latch->getInstList(), Latch->begin(), Jmp);
246
// Remove Latch from the CFG so that
LastExit
becomes the new Latch.
248
Latch->replaceSuccessorsPhiUsesWith(
LastExit
);
/external/llvm/lib/Analysis/
RegionInfo.cpp
607
BasicBlock *
lastExit
= entry;
624
lastExit
= exit;
632
// Tried to create regions from entry to
lastExit
. Next time take a
633
// shortcut from entry to
lastExit
.
634
if (
lastExit
!= entry)
635
insertShortCut(entry,
lastExit
, ShortCut);
Completed in 528 milliseconds