| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_dense_map.h | 54 P->getFirst() = EmptyKey; in clear() 58 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear() 59 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear() 63 P->getFirst() = EmptyKey; in clear() 192 TheBucket->getFirst() = getTombstoneKey(); in erase() 202 TheBucket->getFirst() = getTombstoneKey(); in erase() 236 const KeyT K = P->getFirst(); in forEach() 260 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll() 261 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll() 263 P->getFirst().~KeyT(); in destroyAll() [all …]
|
| H A D | sanitizer_dense_map_info.h | 54 KeyT &getFirst() { return first; } in getFirst() function 55 const KeyT &getFirst() const { return first; } in getFirst() function
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | DenseMap.h | 45 KeyT &getFirst() { return std::pair<KeyT, ValueT>::first; } in getFirst() function 46 const KeyT &getFirst() const { return std::pair<KeyT, ValueT>::first; } in getFirst() function 125 P->getFirst() = EmptyKey; in clear() 129 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear() 130 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear() 134 P->getFirst() = EmptyKey; in clear() 308 TheBucket->getFirst() = getTombstoneKey(); in erase() 316 TheBucket->getFirst() = getTombstoneKey(); in erase() 366 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll() 367 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll() [all …]
|
| H A D | DenseSet.h | 38 KeyT &getFirst() { return key; } in getFirst() function 39 const KeyT &getFirst() const { return key; } in getFirst() function 126 ValueT &operator*() { return I->getFirst(); } 127 const ValueT &operator*() const { return I->getFirst(); } 128 ValueT *operator->() { return &I->getFirst(); } 129 const ValueT *operator->() const { return &I->getFirst(); } 157 const ValueT &operator*() const { return I->getFirst(); } 158 const ValueT *operator->() const { return &I->getFirst(); }
|
| H A D | APFloat.h | 654 APFloat &getFirst() { return Floats[0]; } in getFirst() function 655 const APFloat &getFirst() const { return Floats[0]; } in getFirst() function 830 return U.Double.getFirst().U.IEEE; in getIEEE() 838 return U.Double.getFirst().U.IEEE; in getIEEE()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | MacroExpansionContext.cpp | 67 It->getFirst().print(llvm::dbgs(), SM); llvm::dbgs() << " to "; in MacroExpands() 74 llvm::dbgs() << "remaps "; It->getFirst().print(llvm::dbgs(), SM); in MacroExpands() 127 assert(It->getFirst() != It->getSecond() && in getOriginalText() 131 CharSourceRange::getCharRange(It->getFirst(), It->getSecond()), *SM, in getOriginalText() 147 std::make_pair(Record.getFirst(), Record.getSecond())); in dumpExpansionRangesToStream() 166 std::make_pair(Record.getFirst(), Record.getSecond())); in dumpExpandedTextsToStream()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeCollection.h | 24 virtual std::optional<TypeIndex> getFirst() = 0; 35 std::optional<TypeIndex> Next = getFirst(); in ForEachRecord()
|
| H A D | TypeTableCollection.h | 24 std::optional<TypeIndex> getFirst() override;
|
| H A D | AppendingTypeTableBuilder.h | 39 std::optional<TypeIndex> getFirst() override;
|
| H A D | MergingTypeTableBuilder.h | 48 std::optional<TypeIndex> getFirst() override;
|
| H A D | LazyRandomTypeCollection.h | 78 std::optional<TypeIndex> getFirst() override;
|
| H A D | GlobalTypeTableBuilder.h | 52 std::optional<TypeIndex> getFirst() override;
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | StackLifetime.cpp | 155 ProcessMarker(BlockMarkerSet.begin()->getFirst(), in collectMarkers() 246 const BasicBlock *BB = IT.getFirst(); in calculateLiveIntervals() 301 const BasicBlock *BB = IT.getFirst(); in dumpBlockLiveness() 364 Names.push_back(KV.getFirst()->getName()); in printInstrAlive() 385 if (SL.isAliveAfter(KV.getFirst(), Instr)) in printInfoComment() 386 Names.push_back(KV.getFirst()->getName()); in printInfoComment()
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | DarwinSDKInfo.cpp | 48 if (KeyVersion.tryParse(KV.getFirst()) || ValueVersion.tryParse(*Val)) in parseJSON() 92 auto Pair = StringRef(KV.getFirst()).split("_"); in parseDarwinSDKSettingsJSON()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeTableCollection.cpp | 24 std::optional<TypeIndex> TypeTableCollection::getFirst() { in getFirst() function in TypeTableCollection
|
| H A D | AppendingTypeTableBuilder.cpp | 32 std::optional<TypeIndex> AppendingTypeTableBuilder::getFirst() { in getFirst() function in AppendingTypeTableBuilder
|
| H A D | GlobalTypeTableBuilder.cpp | 34 std::optional<TypeIndex> GlobalTypeTableBuilder::getFirst() { in getFirst() function in GlobalTypeTableBuilder
|
| H A D | MergingTypeTableBuilder.cpp | 35 std::optional<TypeIndex> MergingTypeTableBuilder::getFirst() { in getFirst() function in MergingTypeTableBuilder
|
| H A D | LazyRandomTypeCollection.cpp | 203 std::optional<TypeIndex> LazyRandomTypeCollection::getFirst() { in getFirst() function in LazyRandomTypeCollection
|
| H A D | CVTypeVisitor.cpp | 160 std::optional<TypeIndex> I = Types.getFirst(); in visitTypeStream()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeEnumTypes.cpp | 29 std::optional<TypeIndex> TI = Types.getFirst(); in NativeEnumTypes()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/ |
| H A D | unroll1.C | 130 dom = DomainTraits<T>::getFirst(newdom); 142 static int getFirst(const int &d) { return d; }
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
| H A D | TypeReferenceTracker.cpp | 27 for (std::optional<TypeIndex> TI = Types.getFirst(); TI; in getNumRecordsInCollection()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | SafeStackLayout.cpp | 35 OS << " at " << IT.getSecond() << ": " << *IT.getFirst() << "\n"; in print()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
| H A D | ExecutorSharedMemoryMapperService.cpp | 279 ReservationAddrs.push_back(ExecutorAddr::fromPtr(R.getFirst())); in shutdown()
|