Searched refs:It (Results 176 - 200 of 448) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_segmented_array.h438 auto It = end(); variable
439 --It;
440 return *It;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseMultiSet.h40 /// It is useful for algorithms that require a single set with fast operations.
203 // It's not hard to resize the universe on a non-empty set, but it doesn't
388 for (const_iterator It = find(Key); It != end(); ++It)
H A DSmallPtrSet.h462 template<typename It>
463 SmallPtrSet(It I, It E) : BaseT(SmallStorage, SmallSizePowTwo) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DRangeSelector.cpp58 auto It = NodesMap.find(ID); local
59 if (It == NodesMap.end())
61 return It->second;
H A DStencil.cpp38 auto It = NodesMap.find(Id); local
39 if (It == NodesMap.end())
42 return It->second;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp315 auto It = ExistingIncludes.find(IncludeName);
316 if (It != ExistingIncludes.end())
317 for (const auto &Inc : It->second)
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexingContext.cpp414 auto It = llvm::find_if(FinalRelations, [&](SymbolRelation Elem) -> bool {
417 if (It != FinalRelations.end()) {
418 It->Roles |= Rel.Roles;
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp630 auto It = Substitutions.find(S->Name); local
631 if (It == Substitutions.end())
633 return It->second.Root;
779 template <typename It> void padToSameLength(It Begin, It End) {
781 for (It I = Begin; I != End; ++I)
783 for (It I = Begin; I != End; ++I)
787 template <typename It> void makeTableRows(It Begi
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h378 auto It = Profiles.find(Fname); local
379 if (It != Profiles.end())
380 return &It->second;
417 /// It includes all the names that have samples either in outline instance
481 /// It includes all the names that have samples either in outline instance
564 /// It is easy to add a new section while maintaining the backward
573 /// commonly used sections of a profile in extensible binary format. It is
H A DSampleProf.h512 auto It = Cand.rfind(Suffix); local
513 if (It == StringRef::npos)
516 if (Dit == It + Suffix.size() - 1)
517 Cand = Cand.substr(0, It);
619 /// It produces a sorted list of <LocationT, SampleT> records by ascending
641 /// in the binary used to generate the profile. It is useful to
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp172 for (ImportMapIteratorTy It = ImportList.begin(); It != ImportList.end();
173 ++It) {
174 ImportModulesVector.push_back(It);
296 for (auto It = TidIter.first; It != TidIter.second; ++It)
297 AddTypeIdSummary(It->second.first, It->second.second);
654 // comdat is empty rather than leaving an incomplete comdat. It i
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp1836 // form). It is possible, however, that we'll need to reverse the condition
2220 // It takes two constants to compare, along with the true/false registers
2312 MachineBasicBlock::reverse_iterator E = MI.getParent()->rend(), It = MI;
2313 It++;
2315 for (; It != E; ++It) {
2316 if (It->modifiesRegister(Reg, TRI))
2317 return &*It;
2318 if (It->readsRegister(Reg, TRI))
2471 MachineBasicBlock::reverse_iterator It
[all...]
/freebsd-11-stable/tools/tools/sysdoc/
H A Dsysdoc.sh7 # It would be nice to have OIDs separated into composite groups
79 It also gets around adding a bunch of supporting code to the
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp736 MachineBasicBlock::const_iterator It = BrI.getIterator(); local
741 while (It != End) {
742 const MachineInstr &MI = *It;
754 ++It;
900 MachineBasicBlock::const_iterator It = SB->begin(), End = SB->end(); local
903 while (It != End && It->isPHI()) {
904 InstrExec.insert(&*It);
905 visitPHI(*It);
906 ++It;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp241 // consumers use them signed. It's most certainly legacy due to
535 auto It = partition_point(Entries, [=](const std::unique_ptr<FrameEntry> &E) {
538 if (It != Entries.end() && (*It)->getOffset() == Offset)
539 return It->get();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp259 // Return a pair of {IsClobber (bool), AR (AliasResult)}. It relies on AR being
550 /// This will update Desc.Last as it walks. It will (optionally) also stop at
561 // it to 1. This will not do any alias() calls. It either returns in the
618 /// target. It's left in an unspecified state.
975 RenamePassData(DomTreeNode *D, DomTreeNode::const_iterator It, argument
977 : DTN(D), ChildIt(It), IncomingVal(M) {}
1010 /// A MemorySSAWalker that does AA walks to disambiguate accesses. It no
1091 auto It = PerBlockAccesses.find(S); local
1093 if (It == PerBlockAccesses.end() || !isa<MemoryPhi>(It
1116 auto It = PerBlockAccesses.find(BB); local
1199 auto It = PerBlockAccesses.find(S); local
1208 auto It = PerBlockAccesses.find(BB); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DHotColdSplitting.cpp132 // EH pads are unsafe to outline because doing so breaks EH type tables. It
137 // be unreachable. It���s not safe to split them out either.
453 // If the sink can be added to the cold region, do so. It's considered as
602 // TODO: It's theoretically possible to outline more by only keeping the
649 for (auto It = M.begin(), End = M.end(); It != End; ++It) {
650 Function &F = *It;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.h131 MachineBasicBlock::iterator &It, MachineFunction &MF,
/freebsd-11-stable/contrib/bmake/mk/
H A Dsys.dependfile.mk35 # It usually makes sense to order from most specific to least.
H A Dsys.vars.mk17 # It relies on the fact that conditionals and dependencies are resolved
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dsol2-ci.asm37 ! sections. It is linked in before the values-Xx.o files and also before
/freebsd-11-stable/share/mk/
H A Dplain.test.mk54 # TODO(jmmv): It seems to me that this SED and SRC functionality should
H A Dsys.dependfile.mk36 # It usually makes sense to order from most specific to least.
H A Datf.test.mk68 # TODO(jmmv): It seems to me that this SED and SRC functionality should
/freebsd-11-stable/tools/tools/editing/
H A Dfreebsd.vim28 " indentation. It registers a macro (see below) for changing a buffer's

Completed in 315 milliseconds

1234567891011>>