Searched refs:Entry (Results 51 - 75 of 500) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dconst_iterator.hpp60 binary_heap_const_iterator_<Value_Type, Entry, Simple, Allocator>
63 binary_heap_const_point_iterator_<Value_Type, Entry, Simple, Allocator>
67 typename Entry,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DSyntheticCountsUtils.cpp65 for (auto &Entry : AdditionalCounts)
66 AddCount(Entry.first, Entry.second);
H A DMemoryDependenceAnalysis.cpp808 for (auto &Entry : Cache)
809 if (Entry.getResult().isDirty())
810 DirtyBlocks.push_back(Entry.getBB());
846 NonLocalDepInfo::iterator Entry = local
849 if (Entry != Cache.begin() && std::prev(Entry)->getBB() == DirtyBB)
850 --Entry;
853 if (Entry != Cache.begin() + NumSortedEntries &&
854 Entry->getBB() == DirtyBB) {
857 if (!Entry
984 NonLocalDepInfo::iterator Entry = std::upper_bound( local
1058 MemoryDependenceResults::NonLocalDepInfo::iterator Entry = local
1068 MemoryDependenceResults::NonLocalDepInfo::iterator Entry = local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DSimpleFormatContext.h48 const FileEntry *Entry = Files.getFile(Name); local
49 assert(Entry != nullptr);
50 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp57 Rows = std::make_unique<Entry[]>(Header.NumBuckets);
59 std::make_unique<Entry::SectionContribution *[]>(Header.NumUnits);
73 std::make_unique<Entry::SectionContribution[]>(Header.NumColumns);
150 const DWARFUnitIndex::Entry::SectionContribution *
151 DWARFUnitIndex::Entry::getOffset(DWARFSectionKind Sec) const {
159 const DWARFUnitIndex::Entry::SectionContribution *
160 DWARFUnitIndex::Entry::getOffset() const {
164 const DWARFUnitIndex::Entry *
170 llvm::sort(OffsetLookup, [&](Entry *E1, Entry *E
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp182 const ResourceEntryRef &Entry, StringRef File1, StringRef File2) {
189 if (Entry.checkTypeString()) {
191 if (!convertUTF16LEToUTF8String(Entry.getTypeString(), UTF8))
195 printResourceTypeName(Entry.getTypeID(), OS);
198 if (Entry.checkNameString()) {
200 if (!convertUTF16LEToUTF8String(Entry.getNameString(), UTF8))
204 OS << "ID " << Entry.getNameID();
207 OS << "/language " << Entry.getLanguage() << ", in " << File1 << " and in "
313 const ResourceEntryRef &Entry) const {
314 return MinGW && !Entry
181 makeDuplicateResourceError( const ResourceEntryRef &Entry, StringRef File1, StringRef File2) argument
347 ResourceEntryRef Entry = EntryOrErr.get(); local
381 addEntry( const ResourceEntryRef &Entry, uint32_t Origin, std::vector<std::vector<uint8_t>> &Data, std::vector<std::vector<UTF16>> &StringTable, TreeNode *&Result) argument
483 addTypeNode( const ResourceEntryRef &Entry, std::vector<std::vector<UTF16>> &StringTable) argument
492 addNameNode( const ResourceEntryRef &Entry, std::vector<std::vector<UTF16>> &StringTable) argument
501 addLanguageNode( const ResourceEntryRef &Entry, uint32_t Origin, std::vector<std::vector<uint8_t>> &Data, TreeNode *&Result) argument
899 auto *Entry = reinterpret_cast<coff_resource_dir_entry *>(BufferStart + local
919 auto *Entry = reinterpret_cast<coff_resource_dir_entry *>(BufferStart + local
942 auto *Entry = reinterpret_cast<coff_resource_data_entry *>(BufferStart + local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp107 AddrLabelSymEntry &Entry = AddrLabelSymbols[BB]; local
110 if (!Entry.Symbols.empty()) {
111 assert(BB->getParent() == Entry.Fn && "Parent changed");
112 return Entry.Symbols;
119 Entry.Index = BBCallbacks.size() - 1;
120 Entry.Fn = BB->getParent();
124 Context.lookupSymbol("." + Entry.Fn->getName());
131 Entry.Symbols.push_back(Sym);
132 return Entry.Symbols;
153 AddrLabelSymEntry Entry local
[all...]
H A DInterferenceCache.h43 /// Entry - A cache entry containing interference information for all aliases
45 class Entry { class in class:llvm::InterferenceCache
53 /// RefCount - The total number of Cursor instances referring to this Entry.
101 Entry() = default;
154 Entry Entries[CacheEntries];
157 Entry *get(unsigned PhysReg);
181 Entry *CacheEntry = nullptr;
185 void setEntry(Entry *E) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoring.cpp59 for (const auto &Entry : groupReplacementsByFile(
61 Result = tooling::applyAllReplacements(Entry.second, Rewrite) && Result;
81 const FileEntry *Entry = nullptr; local
83 Entry = *File;
85 FileID ID = SM.getOrCreateFileID(Entry, SrcMgr::C_User);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFListTable.h228 ListEntryType Entry; local
229 if (Error E = Entry.extract(Data, End, OffsetPtr))
231 Entries.push_back(Entry);
232 if (Entry.isSentinel())
255 for (const auto &Entry : List.second.getEntries())
258 dwarf::RangeListEncodingString(Entry.EntryKind).size());
263 for (const auto &Entry : List.second.getEntries())
264 Entry.dump(OS, getAddrSize(), MaxEncodingStringLength, CurrentBase,
272 auto Entry = ListMap.find(Offset); local
273 if (Entry !
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h39 struct Entry { struct in class:lldb_private::FormatEntity
107 Entry::Type type;
114 Entry(Type t = Type::Invalid, const char *s = nullptr, function in struct:lldb_private::FormatEntity::Entry
120 Entry(llvm::StringRef s);
121 Entry(char ch);
129 void AppendEntry(const Entry &&entry) { children.push_back(entry); }
146 bool operator==(const Entry &rhs) const {
172 std::vector<Entry> children;
180 static bool Format(const Entry &entry, Stream &s, const SymbolContext *sc,
197 static Status Parse(const llvm::StringRef &format, Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DLineTable.h203 struct Entry { struct in class:lldb_private::LineTable
204 Entry() function in struct:lldb_private::LineTable::Entry
210 Entry(lldb::addr_t _file_addr, uint32_t _line, uint16_t _column, function in struct:lldb_private::LineTable::Entry
236 static int Compare(const Entry &lhs, const Entry &rhs) {
261 bool operator()(const LineTable::Entry &, const LineTable::Entry &) const;
267 static bool EntryAddressLessThan(const Entry &lhs, const Entry &rhs) {
301 Entry *a_entr
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFVisitor.cpp51 for (auto &Entry : Unit.Entries) {
52 onStartDIE(Unit, Entry);
53 if (Entry.AbbrCode == 0u)
55 auto &Abbrev = DebugInfo.AbbrevDecls[Entry.AbbrCode - FirstAbbrevCode];
56 auto FormVal = Entry.Values.begin();
59 FormVal != Entry.Values.end() && AbbrForm != Abbrev.Attributes.end();
169 onEndDIE(Unit, Entry);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DIntervalMap.cpp20 path.front() = Entry(Root, Size, Offsets.first);
21 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second));
60 path.resize(Level + 1, Entry(nullptr, 0, 0));
68 path[l] = Entry(NR, NR.size() - 1);
71 path[l] = Entry(NR, NR.size() - 1);
112 path[l] = Entry(NR, 0);
115 path[l] = Entry(NR, 0);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp520 ConstInfoEntry Entry = findInfo(StmtNode); local
522 if (Entry != PropagationMap.end())
523 return Entry->second;
537 InfoEntry Entry = findInfo(From); local
538 if (Entry != PropagationMap.end())
539 insertInfo(To, Entry->second);
546 InfoEntry Entry = findInfo(From); local
547 if (Entry != PropagationMap.end()) {
548 PropagationInfo& PInfo = Entry->second;
559 InfoEntry Entry local
569 InfoEntry Entry = findInfo(To); local
626 InfoEntry Entry = findInfo(Call->getArg(Index)); local
763 InfoEntry Entry = findInfo(Temp->getSubExpr()); local
880 InfoEntry Entry = findInfo(Ret->getRetValue()); local
897 InfoEntry Entry = findInfo(UOp->getSubExpr()); local
1022 auto &Entry = StateMapsArray[Block->getBlockID()]; local
1036 auto &Entry = StateMapsArray[Block->getBlockID()]; local
1060 auto &Entry = StateMapsArray[Block->getBlockID()]; local
1114 VarMapType::const_iterator Entry = VarMap.find(Var); local
1124 TmpMapType::const_iterator Entry = TmpMap.find(Tmp); local
[all...]
H A DCFGStmtMap.cpp56 CFGBlock *&Entry = SM[CS->getStmt()]; local
57 // If 'Entry' is already initialized (e.g., a terminator was already),
59 if (Entry)
62 Entry = B;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp193 if (const auto *Entry = CostTableLookup(GLMCostTable, ISD,
195 return LT.first * Entry->Cost;
242 if (const auto *Entry = CostTableLookup(SLMCostTable, ISD,
244 return LT.first * Entry->Cost;
298 if (const auto *Entry = CostTableLookup(AVX512BWUniformConstCostTable, ISD,
300 return LT.first * Entry->Cost;
311 if (const auto *Entry = CostTableLookup(AVX512UniformConstCostTable, ISD,
313 return LT.first * Entry->Cost;
326 if (const auto *Entry = CostTableLookup(AVX2UniformConstCostTable, ISD,
328 return LT.first * Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DCompilation.cpp67 DerivedArgList *&Entry = TCArgs[{TC, BoundArch, DeviceOffloadKind}]; local
68 if (!Entry) {
80 Entry = TC->TranslateArgs(*TranslatedArgs, BoundArch, DeviceOffloadKind);
81 if (!Entry)
82 Entry = TranslatedArgs;
84 Entry = TC->TranslateArgs(*OpenMPArgs, BoundArch, DeviceOffloadKind);
85 if (!Entry)
86 Entry = OpenMPArgs;
93 Entry->AddSynthesizedArg(ArgPtr);
96 return *Entry;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h197 for (const auto &Entry : *this) {
198 if (auto EC = Writer.writeInteger(Entry.first))
200 if (auto EC = Writer.writeObject(Entry.second))
279 auto Entry = find_as(K, Traits); local
280 if (Entry != end()) {
281 assert(isPresent(Entry.index()));
282 assert(Traits.storageKeyToLookupKey(Buckets[Entry.index()].first) == K);
284 Buckets[Entry.index()].second = V;
288 auto &B = Buckets[Entry.index()];
289 assert(!isPresent(Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp317 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
318 if (!Entry.isFile() || Invalid)
321 const SrcMgr::FileInfo &FileInfo = Entry.getFile();
428 ContentCache *&Entry = FileInfos[FileEnt]; local
429 if (Entry) return Entry;
432 Entry = ContentCacheAlloc.Allocate<ContentCache>();
440 new (Entry) ContentCache(FileEnt);
442 new (Entry) ContentCache(OverridenFilesKeepOriginalName ? FileEnt
446 new (Entry) ContentCach
461 ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(); local
1134 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &CharDataInvalid); local
1290 const SLocEntry &Entry = getSLocEntry(FID, &MyInvalid); local
1416 const LineEntry *Entry = local
1451 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
1526 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); local
1545 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1639 const SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
1713 const SrcMgr::SLocEntry &Entry = getSLocEntryByID(ID, &Invalid); local
1766 const SLocEntry &Entry = getSLocEntry(SpellFID); local
1879 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp45 auto Entry = FileMgr.getFile(Name, /*OpenFile=*/false, local
47 if (Entry)
48 return lookup(*Entry);
71 auto Entry = FileMgr.getFile(Name, /*OpenFile=*/false, local
73 if (!Entry)
75 return std::move(InMemoryBuffers[*Entry]);
115 const FileEntry *Entry; local
125 if (lookupModuleFile(FileName, ExpectedSize, ExpectedModTime, Entry)) {
130 if (!Entry && FileName != "-") {
136 if (ModuleFile *ModuleEntry = Modules.lookup(Entry)) {
273 const FileEntry *Entry = local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.cpp50 const DWARFRangeList::Entry &range = ranges.GetEntryRef(i);
84 const LineTable::FileAddressRanges::Entry &range =
107 const LineTable::FileAddressRanges::Entry &range =
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DHTMLPrint.cpp65 const FileEntry* Entry = R.getSourceMgr().getFileEntryForID(FID); local
70 if (Entry)
71 Name = Entry->getName();
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DInnerPointerChecker.cpp65 for (const auto &Entry : Map) {
66 if (Entry.second.contains(Sym))
239 for (const auto &Entry : RPM) {
240 if (!SymReaper.isLiveRegion(Entry.first)) {
243 State = State->remove<RawPtrMap>(Entry.first);
245 if (const PtrSet *OldSet = State->get<RawPtrMap>(Entry.first)) {
247 for (const auto Symbol : Entry.second) {
252 ? State->remove<RawPtrMap>(Entry.first)
253 : State->set<RawPtrMap>(Entry.first, CleanedUpSet);
269 for (const auto &Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/
H A DInstrumentationMap.cpp151 auto &Entry = Sleds.back(); local
154 Entry.Address = RelocateOrElse(AddrOff, Extractor.getU64(&OffsetPtr));
156 Entry.Function = RelocateOrElse(FuncOff, Extractor.getU64(&OffsetPtr));
166 Entry.Kind = Kinds[Kind];
167 Entry.AlwaysInstrument = Extractor.getU8(&OffsetPtr) != 0;
173 CurFn = Entry.Function;
174 FunctionAddresses[FuncId] = Entry.Function;
175 FunctionIds[Entry.Function] = FuncId;
177 if (Entry.Function != CurFn) {
179 CurFn = Entry
[all...]

Completed in 283 milliseconds

1234567891011>>