/external/llvm/lib/Target/ |
D | TargetRecip.cpp | 99 for (auto &KV : RecipMap) in parseGlobalParams() local 100 KV.second.Enabled = Enable; in parseGlobalParams() 104 for (auto &KV : RecipMap) in parseGlobalParams() local 105 KV.second.RefinementSteps = RefSteps; in parseGlobalParams() 198 for (auto &KV : RecipMap) { in setDefaults() local 199 RecipParams &RP = KV.second; in setDefaults() 215 for (const auto &KV : RecipMap) { in operator ==() local 216 StringRef Op = KV.first; in operator ==() 217 const RecipParams &RP = KV.second; in operator ==()
|
/external/google-benchmark/test/ |
D | output_test_helper.cc | 66 for (auto const& KV : subs) { in PerformSubstitutions() local 69 while ((pos = source.find(KV.first, next_start)) != std::string::npos) { in PerformSubstitutions() 70 next_start = pos + KV.second.size(); in PerformSubstitutions() 71 source.replace(pos, KV.first.size(), KV.second); in PerformSubstitutions() 352 for (auto KV : il) { in SetSubstitutions() local 354 KV.second = internal::PerformSubstitutions(KV.second); in SetSubstitutions() 356 if (EKV.first == KV.first) { in SetSubstitutions() 357 EKV.second = std::move(KV.second); in SetSubstitutions() 362 if (!exists) subs.push_back(std::move(KV)); in SetSubstitutions()
|
/external/libcxx/utils/google-benchmark/test/ |
D | output_test_helper.cc | 66 for (auto const& KV : subs) { in PerformSubstitutions() local 69 while ((pos = source.find(KV.first, next_start)) != std::string::npos) { in PerformSubstitutions() 70 next_start = pos + KV.second.size(); in PerformSubstitutions() 71 source.replace(pos, KV.first.size(), KV.second); in PerformSubstitutions() 352 for (auto KV : il) { in SetSubstitutions() local 354 KV.second = internal::PerformSubstitutions(KV.second); in SetSubstitutions() 356 if (EKV.first == KV.first) { in SetSubstitutions() 357 EKV.second = std::move(KV.second); in SetSubstitutions() 362 if (!exists) subs.push_back(std::move(KV)); in SetSubstitutions()
|
/external/llvm/lib/Transforms/IPO/ |
D | ForceFunctionAttrs.cpp | 67 auto KV = StringRef(S).split(':'); in addForcedAttributes() local 68 if (KV.first != F.getName()) in addForcedAttributes() 71 auto Kind = parseAttrKind(KV.second); in addForcedAttributes() 73 DEBUG(dbgs() << "ForcedAttribute: " << KV.second in addForcedAttributes()
|
/external/libcxx/test/std/containers/associative/multimap/ |
D | max_size.pass.cpp | 26 typedef std::pair<const int, int> KV; in main() typedef 28 typedef limited_allocator<KV, 10> A; in main() 35 typedef limited_allocator<KV, (size_t)-1> A; in main()
|
/external/libcxx/test/std/containers/associative/map/map.access/ |
D | max_size.pass.cpp | 26 typedef std::pair<const int, int> KV; in main() typedef 28 typedef limited_allocator<KV, 10> A; in main() 35 typedef limited_allocator<KV, (size_t)-1> A; in main()
|
/external/libcxx/test/std/containers/unord/unord.multimap/ |
D | max_size.pass.cpp | 26 typedef std::pair<const int, int> KV; in main() typedef 28 typedef limited_allocator<KV, 10> A; in main() 37 typedef limited_allocator<KV, (size_t)-1> A; in main()
|
/external/libcxx/test/std/containers/unord/unord.map/ |
D | max_size.pass.cpp | 26 typedef std::pair<const int, int> KV; in main() typedef 28 typedef limited_allocator<KV, 10> A; in main() 36 typedef limited_allocator<KV, (size_t)-1> A; in main()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopRerollPass.cpp | 850 for (auto &KV : Roots) { in collectPossibleRoots() local 851 if (KV.first == 0) in collectPossibleRoots() 853 if (KV.second->getNumUses() != NumBaseUses) { in collectPossibleRoots() 856 KV.second->getNumUses() << "\n"); in collectPossibleRoots() 913 for (auto &KV : V) { in findRootsBase() local 915 DRS.BaseInst = KV.second; in findRootsBase() 918 DRS.Roots.push_back(KV.second); in findRootsBase() 919 } else if (V.find(KV.first - 1) != V.end()) { in findRootsBase() 920 DRS.Roots.push_back(KV.second); in findRootsBase() 924 DRS.BaseInst = KV.second; in findRootsBase() [all …]
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | MCSubtargetInfo.cpp | 83 SubtargetInfoKV KV; in getInstrItineraryForCPU() local 84 KV.Key = CPU.data(); in getInstrItineraryForCPU() 86 std::lower_bound(ProcItins, ProcItins+NumProcs, KV); in getInstrItineraryForCPU()
|
D | SubtargetFeature.cpp | 124 T KV; in Find() local 125 KV.Key = S.data(); in Find() 129 const T *F = std::lower_bound(A, Hi, KV); in Find()
|
/external/clang/lib/Serialization/ |
D | MultiOnDiskHashTable.h | 253 for (auto &KV : M->Data) in findAll() 254 Info::MergeDataInto(KV.second, ResultBuilder); in findAll() 309 for (auto &KV : Merged->Data) { in emit() 310 if (!Gen.contains(KV.first, Info)) in emit() 311 Gen.insert(KV.first, Info.ImportData(KV.second), Info); in emit()
|
/external/llvm/include/llvm/IR/ |
D | ValueMap.h | 168 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { in insert() argument 169 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second)); in insert() 173 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { in insert() argument 175 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second))); in insert()
|
/external/llvm/include/llvm/ADT/ |
D | MapVector.h | 91 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { in insert() argument 92 std::pair<KeyT, unsigned> Pair = std::make_pair(KV.first, 0); in insert() 96 Vector.push_back(std::make_pair(KV.first, KV.second)); in insert()
|
D | DenseMap.h | 171 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { in insert() argument 173 if (LookupBucketFor(KV.first, TheBucket)) in insert() 178 TheBucket = InsertIntoBucket(KV.first, KV.second, TheBucket); in insert() 186 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { in insert() argument 188 if (LookupBucketFor(KV.first, TheBucket)) in insert() 193 TheBucket = InsertIntoBucket(std::move(KV.first), in insert() 194 std::move(KV.second), in insert() 206 std::pair<iterator, bool> insert_as(std::pair<KeyT, ValueT> &&KV, in insert_as() argument 214 TheBucket = InsertIntoBucket(std::move(KV.first), std::move(KV.second), Val, in insert_as()
|
D | StringMap.h | 364 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { in insert() argument 365 return emplace_second(KV.first, std::move(KV.second)); in insert()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | DenseMap.h | 172 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { in insert() argument 173 return try_emplace(KV.first, KV.second); in insert() 179 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { in insert() argument 180 return try_emplace(std::move(KV.first), std::move(KV.second)); in insert() 222 std::pair<iterator, bool> insert_as(std::pair<KeyT, ValueT> &&KV, in insert_as() argument 230 TheBucket = InsertIntoBucketWithLookup(TheBucket, std::move(KV.first), in insert_as() 231 std::move(KV.second), Val); in insert_as()
|
D | StringMap.h | 368 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { in insert() argument 369 return try_emplace(KV.first, std::move(KV.second)); in insert()
|
/external/llvm/lib/Analysis/ |
D | DemandedBits.cpp | 380 for (auto &KV : AliveBits) { in print() local 381 OS << "DemandedBits: 0x" << utohexstr(KV.second.getLimitedValue()) << " for " in print() 382 << *KV.first << "\n"; in print()
|
/external/llvm/lib/Object/ |
D | IRObjectFile.cpp | 99 for (auto &KV : *Streamer) { in CollectAsmUndefinedRefs() 100 StringRef Key = KV.first(); in CollectAsmUndefinedRefs() 101 RecordStreamer::State Value = KV.second; in CollectAsmUndefinedRefs()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | DenseMap.h | 162 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { in insert() argument 164 if (LookupBucketFor(KV.first, TheBucket)) in insert() 169 TheBucket = InsertIntoBucket(KV.first, KV.second, TheBucket); in insert()
|
D | ValueMap.h | 135 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { in insert() argument 137 Map.insert(std::make_pair(Wrap(KV.first), KV.second)); in insert()
|
/external/avb/test/data/ |
D | testkey_atx_pik.pem | 45 0KV/x2n5hRwQhAPsBASzAEoNo6IM2S4BZ2To9Ia0w1cTiZco9WLI42M++sKAJraA
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | BugReporterVisitors.cpp | 570 if (Optional<KnownSVal> KV = in VisitNode() local 573 *KV, OriginalR, EnableNullFPSuppression)); in VisitNode() 1035 if (Optional<KnownSVal> KV = LVal.getAs<KnownSVal>()) in trackNullOrUndefValue() local 1037 *KV, RR, EnableNullFPSuppression)); in trackNullOrUndefValue() 1064 if (Optional<KnownSVal> KV = V.getAs<KnownSVal>()) in trackNullOrUndefValue() local 1066 *KV, R, EnableNullFPSuppression)); in trackNullOrUndefValue()
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | ba28d91a3f6bc986351eeef4cc3126ee.00001ab8.honggfuzz.cov | 6 … !H�$� �z�L�F�b��7Q-{ )��e�aB1�Qh�G��3a�{���iaQ��I�/����6�Y���oJ���KV�o?���h����EМ��Np["…
|