Searched refs:back (Results 201 - 225 of 965) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp366 LIs.push_back(std::make_unique<LoopInfo>(*DTs.back()));
367 return LIs.back().get();
371 return DTs.back().get();
376 return PDTs.back().get();
727 // we can try to go back to a call site we entered earlier. If none exists, we
797 return &JoinBB->back();
H A DMemoryDependenceAnalysis.cpp746 BasicBlock *DirtyBB = DirtyBlocks.back();
982 NonLocalDepEntry Val = Cache.back();
992 NonLocalDepEntry Val = Cache.back();
1290 PHITransAddr &PredPointer = PredList.back().second;
1580 ReverseLocalDeps[ReverseDepsToAdd.back().first].insert(
1581 ReverseDepsToAdd.back().second);
1611 ReverseNonLocalDeps[ReverseDepsToAdd.back().first].insert(
1612 ReverseDepsToAdd.back().second);
1654 ReverseNonLocalPtrDeps[ReversePtrDepsToAdd.back().first].insert(
1655 ReversePtrDepsToAdd.back()
[all...]
/freebsd-13-stable/sys/ufs/ffs/
H A Dffs_subr.c388 * that it does not update hashes. When the disk is moved back
566 int i, start, end, forw, back, map; local
621 back = start - i;
624 * back clusters.
626 i = back + forw + 1;
630 if (back > 0)
631 sump[back] -= cnt;
/freebsd-13-stable/usr.sbin/makefs/ffs/
H A Dffs_alloc.c424 * The specified block or fragment is placed back in the
494 * add back in counts associated with the new frags
606 int i, start, end, forw, back, map, bit; local
661 back = start - i;
664 * back clusters.
666 i = back + forw + 1;
670 if (back > 0)
671 ufs_add32(sump[back], -cnt, needswap);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h706 Changed |= Op != Operands.back();
716 Changed |= Op != Operands.back();
733 Changed |= Op != Operands.back();
745 Changed |= Op != Operands.back();
755 Changed |= Op != Operands.back();
765 Changed |= Op != Operands.back();
775 Changed |= Op != Operands.back();
H A DLoopCacheAnalysis.h65 return Subscripts.back();
/freebsd-13-stable/crypto/openssh/
H A Dhostfile.c530 char *fp, *temp = NULL, *back = NULL; local
549 (r = asprintf(&back, "%s.old", filename)) < 0) {
599 if (unlink(back) == -1 && errno != ENOENT) {
602 back, strerror(errno));
606 if (link(filename, back) == -1) {
609 filename, back, strerror(errno));
633 free(back);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCStreamer.cpp253 return !DwarfFrameInfos.empty() && !DwarfFrameInfos.back().End;
263 return &DwarfFrameInfos.back();
679 CurrentWinFrameInfo = WinFrameInfos.back().get();
714 CurrentWinFrameInfo = WinFrameInfos.back().get();
951 if ((!DwarfFrameInfos.empty() && !DwarfFrameInfos.back().End) ||
952 (!WinFrameInfos.empty() && !WinFrameInfos.back()->End)) {
1113 MCSectionSubPair curSection = SectionStack.back().first;
1114 SectionStack.back().second = curSection;
1117 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp651 // Now go back through the instructions and build up our data structures.
1004 MachineInstr *PredMI = &Pred->back();
1179 // latter case, we want to allow resetting the high water mark back to
1240 ImmBranches.push_back(ImmBranch(&UserMBB->back(),
1521 // We should have a way to back out this alignment restriction
1569 MachineInstr *BMI = &MBB->back();
1603 int delta = TII->getInstSizeInBytes(MBB->back());
1605 MBB->back().eraseFromParent();
1624 Br.MI = &MBB->back();
1625 BBInfo[MBB->getNumber()].Size += TII->getInstSizeInBytes(MBB->back());
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h495 sp = m_stack.back();
503 lldb::IOHandlerSP sp(m_stack.back());
509 m_top = (m_stack.empty() ? nullptr : m_stack.back().get());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp189 // Normalize back slashes to forward slashes
328 if (!m_filename && !path.empty() && path.back() != path_separator)
375 if (m_directory && m_filename && m_directory.GetStringRef().back() != '/' &&
376 m_filename.GetStringRef().back() != '/')
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp55 SelectedASTNode Result = std::move(SelectionStack.back());
133 SelectedASTNode Node = std::move(SelectionStack.back());
136 SelectionStack.back().Children.push_back(std::move(Node));
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp124 D.Groups.back().Group = G;
125 Documentation &Base = D.Groups.back();
264 Args.back() += "...";
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAEmitter.cpp18 // initial automaton was nondeterministic - it allows mapping back from the DFA
276 Actions.insert(Transitions.back().getActions());
309 const auto &ActionTypes = Transitions.back().getTypes();
359 Types.back() = std::string(TypeOverride);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600Packetizer.cpp235 if (getSlot(MI) <= getSlot(*CurrentPacketMIs.back())) {
308 MI.getOperand(Op).setImm(BS.back());
310 setIsLastBit(CurrentPacketMIs.back(), 0);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DDomainSocket.cpp140 if (name.back() == '\0') name.pop_back();
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DMacroPPCallbacks.cpp78 return Scopes.back();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.h65 Current->Children.push_back(Children.back());
H A DUnwrappedLineParser.cpp50 Line.MustBeDeclaration = Stack.back();
147 Parser.CurrentLines = &Parser.Line->Tokens.back().Children;
287 PPLevelBranchIndex.back() + 1 >= PPLevelBranchCount.back()) {
292 ++PPLevelBranchIndex.back();
294 assert(PPLevelBranchIndex.back() <= PPLevelBranchCount.back());
487 if (LBraceStack.back()->BlockKind == BK_Unknown) {
528 LBraceStack.back()->BlockKind = BK_BracedInit;
531 LBraceStack.back()
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindPlan.cpp359 m_row_list.back()->GetOffset() != row_sp->GetOffset())
362 m_row_list.back() = row_sp;
384 row = m_row_list.back();
421 return m_row_list.back();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DGraph.h82 // 1) Update the adj index of the edge currently at back().
87 G.getEdge(AdjEdgeIds.back()).setAdjEdgeIdx(ThisNId, Idx);
88 AdjEdgeIds[Idx] = AdjEdgeIds.back();
195 NId = FreeNodeIds.back();
210 EId = FreeEdgeIds.back();
642 /// Adds an edge that had been previously disconnected back into the
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DUtility.h132 char back() const { function in class:OutputStream
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DFunction.h714 const BasicBlock &back() const { return BasicBlocks.back(); } function in class:llvm::Function
715 BasicBlock &back() { return BasicBlocks.back(); } function in class:llvm::Function
833 /// Optionally passes back an offending user for diagnostic purposes and
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp70 ParsedAttr *attr = FreeLists[index].back();
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp130 const Token &T = FilteredTokens.back();

Completed in 308 milliseconds

1234567891011>>