Searched refs:Iter (Results 1 - 25 of 115) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_clock.h42 class Iter {
44 explicit Iter(SyncClock* parent);
45 Iter& operator++();
46 bool operator!=(const Iter& other);
59 Iter begin();
60 Iter end();
64 friend class Iter;
188 ALWAYS_INLINE SyncClock::Iter SyncClock::begin() {
189 return Iter(this);
192 ALWAYS_INLINE SyncClock::Iter SyncCloc
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DInterfaceFile.cpp33 auto Iter = local
37 if ((Iter != std::end(Container)) && !(Target_ < *Iter))
38 return Iter;
40 return Container.insert(Iter, Target_);
61 auto Iter = lower_bound(ParentUmbrellas, Target_, local
65 if ((Iter != ParentUmbrellas.end()) && !(Target_ < Iter->first)) {
66 Iter->second = Parent;
70 ParentUmbrellas.emplace(Iter, Target
75 auto Iter = lower_bound(UUIDs, Target_, local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterUtilities.cpp35 auto Iter = llvm::find_if( local
37 return Iter == Notes.end() ? DataExtractor() : Iter->data;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DSourceMgr.h36 SourceMgr(ArrayRef<UniqueInst> S, unsigned Iter) argument
37 : Sequence(S), Current(0), Iterations(Iter ? Iter : DefaultIterations) {}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugStringTableSubsection.cpp98 auto Iter = StringToId.find(S); local
99 assert(Iter != StringToId.end());
100 return Iter->second;
104 auto Iter = IdToString.find(Id); local
105 assert(Iter != IdToString.end());
106 return Iter->second;
H A DDebugChecksumsSubsection.cpp112 auto Iter = OffsetMap.find(Offset); local
113 assert(Iter != OffsetMap.end());
114 return Iter->second;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/
H A DDiagnostic.cpp52 auto Iter = llvm::find_if(D.Notes, [](const tooling::DiagnosticMessage &D) {
55 if (Iter != D.Notes.end())
56 return &Iter->Fix;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DSetTheory.h130 template<typename Iter>
131 void evaluate(Iter begin, Iter end, RecSet &Elts, ArrayRef<SMLoc> Loc) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DGsymReader.h209 auto Iter = std::lower_bound(Begin, End, AddrOffset); local
210 if (Iter == End || AddrOffset < *Iter)
211 --Iter;
212 return std::distance(Begin, Iter);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp66 auto Iter = CountFrequencies.begin(); local
81 while (CurrSum < DesiredCount && Iter != End) {
82 Count = Iter->first;
83 uint32_t Freq = Iter->second;
86 Iter++;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DUnresolvedSet.h40 explicit UnresolvedSetIterator(DeclAccessPair *Iter) argument
41 : iterator_adaptor_base(Iter) {}
42 explicit UnresolvedSetIterator(const DeclAccessPair *Iter) argument
43 : iterator_adaptor_base(const_cast<DeclAccessPair *>(Iter)) {}
131 template<typename Iter> void assign(Iter I, Iter E) { decls().assign(I, E); }
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp55 RecordDecl::field_iterator Iter(RD->field_begin());
58 for (; Iter != End; ++Iter)
59 Last = *Iter;
H A DIteratorRangeChecker.cpp35 void verifyIncrement(CheckerContext &C, const SVal &Iter) const;
36 void verifyDecrement(CheckerContext &C, const SVal &Iter) const;
127 const SVal &Iter) const {
129 verifyRandomIncrOrDecr(C, OO_Plus, Iter,
134 const SVal &Iter) const {
136 verifyRandomIncrOrDecr(C, OO_Minus, Iter,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DStratifiedSets.h95 auto Iter = Values.find(Elem); local
96 if (Iter == Values.end())
98 return Iter->second;
282 auto Iter = Remaps.find(Above.Number); local
283 assert(Iter != Remaps.end());
284 Link.Above = Iter->second;
289 auto Iter = Remaps.find(Below.Number); local
290 assert(Iter != Remaps.end());
291 Link.Below = Iter->second;
298 auto Iter local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h325 ElementListConstIter Iter;
344 Iter = BitVector->Elements.begin();
345 BitNumber = Iter->index() * ElementSize;
346 unsigned BitPos = Iter->find_first();
349 Bits = Iter->word(WordNumber);
365 int NextSetBitNumber = Iter->find_next(BitNumber % ElementSize) ;
368 ++Iter;
372 if (Iter == BitVector->Elements.end()) {
377 BitNumber = Iter->index() * ElementSize;
378 NextSetBitNumber = Iter
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNamedStreamMap.cpp101 auto Iter = OffsetIndexMap.find_as(Stream, HashTraits); local
102 if (Iter == OffsetIndexMap.end())
104 StreamNo = (*Iter).second;
H A DModuleDebugStream.cpp116 auto Iter = SymbolArray.at(Offset); local
117 assert(Iter != SymbolArray.end());
118 return *Iter;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.h56 auto Iter = Individual.try_emplace(Kind, 1, RecordSize); local
57 if (!Iter.second)
58 Iter.first->second.update(RecordSize);
H A DInputFile.cpp233 auto Iter = SC.checksums().getArray().at(Offset); local
234 if (Iter == SC.checksums().getArray().end()) {
239 uint32_t FO = Iter->FileNameOffset;
246 if (Iter->Kind == FileChecksumKind::None) {
250 formatChecksumKind(Iter->Kind), toHex(Iter->Checksum));
483 auto &Iter = *SectionIter; local
486 while (++Iter != End) {
488 SectionRef SR = *Iter;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.cpp28 for (InstSeqLs::iterator Iter = SeqLs.begin(); Iter != SeqLs.end(); ++Iter)
29 Iter->push_back(I);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFVerifier.h69 auto Iter = std::upper_bound(Begin, End, R); local
70 if (Iter != Begin)
71 --Iter;
72 return Iter;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCRegisterInfo.h237 MCRegisterInfo::DiffListIterator Iter; member in class:llvm::MCRegisterInfo::mc_difflist_iterator
242 mc_difflist_iterator(MCRegisterInfo::DiffListIterator Iter) : Iter(Iter) {} argument
246 Iter.init(Reg, DiffList);
247 Val = *Iter;
258 End.Iter.List = nullptr;
263 return Iter.List == Arg.Iter.List;
270 assert(Iter
280 mc_subreg_iterator(MCRegisterInfo::DiffListIterator Iter) argument
292 mc_superreg_iterator(MCRegisterInfo::DiffListIterator Iter) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderIncludes.cpp293 auto Iter =
295 Iter->second.push_back(std::move(IncludeToAdd));
296 auto &CurInclude = Iter->second.back();
329 auto Iter = IncludesByPriority.find(Priority);
330 if (Iter != IncludesByPriority.end()) {
331 for (const auto *Inc : Iter->second) {
353 auto Iter = ExistingIncludes.find(IncludeName);
354 if (Iter == ExistingIncludes.end())
356 for (const auto &Inc : Iter->second) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DCFGMST.h255 auto Iter = BBInfos.end(); local
257 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr));
260 Iter->second = std::move(std::make_unique<BBInfo>(Index));
263 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr));
266 Iter->second = std::move(std::make_unique<BBInfo>(Index));
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DLinkage.h95 auto Iter = CachedLinkageInfo.find(makeCacheKey(ND, Kind)); local
96 if (Iter == CachedLinkageInfo.end())
98 return Iter->second;

Completed in 323 milliseconds

12345