/external/llvm-project/llvm/lib/CodeGen/ |
D | MultiHazardRecognizer.cpp | 58 auto MN = [=](unsigned a, std::unique_ptr<ScheduleHazardRecognizer> &R) { in PreEmitNoops() local 61 return std::accumulate(Recognizers.begin(), Recognizers.end(), 0u, MN); in PreEmitNoops() 65 auto MN = [=](unsigned a, std::unique_ptr<ScheduleHazardRecognizer> &R) { in PreEmitNoops() local 68 return std::accumulate(Recognizers.begin(), Recognizers.end(), 0u, MN); in PreEmitNoops()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | YAMLTraits.cpp | 133 MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode); in beginMapping() local 134 if (MN) { in beginMapping() 135 MN->ValidKeys.clear(); in beginMapping() 140 MapHNode *MN = dyn_cast<MapHNode>(CurrentNode); in keys() local 142 if (!MN) { in keys() 146 for (auto &P : MN->Mapping) in keys() 165 MapHNode *MN = dyn_cast<MapHNode>(CurrentNode); in preflightKey() local 166 if (!MN) { in preflightKey() 171 MN->ValidKeys.push_back(Key); in preflightKey() 172 HNode *Value = MN->Mapping[Key].get(); in preflightKey() [all …]
|
/external/llvm-project/llvm/lib/Support/ |
D | YAMLTraits.cpp | 137 MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode); in beginMapping() local 138 if (MN) { in beginMapping() 139 MN->ValidKeys.clear(); in beginMapping() 144 MapHNode *MN = dyn_cast<MapHNode>(CurrentNode); in keys() local 146 if (!MN) { in keys() 150 for (auto &P : MN->Mapping) in keys() 169 MapHNode *MN = dyn_cast<MapHNode>(CurrentNode); in preflightKey() local 170 if (!MN) { in preflightKey() 177 MN->ValidKeys.push_back(Key); in preflightKey() 178 HNode *Value = MN->Mapping[Key].get(); in preflightKey() [all …]
|
/external/llvm/lib/Support/ |
D | YAMLTraits.cpp | 118 MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode); in beginMapping() local 119 if (MN) { in beginMapping() 120 MN->ValidKeys.clear(); in beginMapping() 138 MapHNode *MN = dyn_cast<MapHNode>(CurrentNode); in preflightKey() local 139 if (!MN) { in preflightKey() 143 MN->ValidKeys.push_back(Key); in preflightKey() 144 HNode *Value = MN->Mapping[Key].get(); in preflightKey() 165 MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode); in endMapping() local 166 if (!MN) in endMapping() 168 for (const auto &NN : MN->Mapping) { in endMapping() [all …]
|
/external/llvm/utils/TableGen/ |
D | DAGISelMatcherEmitter.cpp | 507 const EmitMergeInputChainsMatcher *MN = in EmitMatcher() local 511 if (MN->getNumNodes() == 1 && MN->getNode(0) < 3) { in EmitMatcher() 512 OS << "OPC_EmitMergeInputChains1_" << MN->getNode(0) << ",\n"; in EmitMatcher() 516 OS << "OPC_EmitMergeInputChains, " << MN->getNumNodes() << ", "; in EmitMatcher() 517 for (unsigned i = 0, e = MN->getNumNodes(); i != e; ++i) in EmitMatcher() 518 OS << MN->getNode(i) << ", "; in EmitMatcher() 520 return 2+MN->getNumNodes(); in EmitMatcher()
|
/external/rust/crates/csv/examples/data/ |
D | uspop-null.csv | 53 Brooklyn Center,MN,27718,45.0761111,-93.3325000 54 Coon Rapids,MN,62528,45.1200000,-93.2875000
|
D | uspop-latin1.csv | 53 Brooklyn Center,MN,27718,45.0761111,-93.3325000 54 Coon Rapids,MN,62528,45.1200000,-93.2875000
|
D | uspop.csv | 53 Brooklyn Center,MN,27718,45.0761111,-93.3325000 54 Coon Rapids,MN,62528,45.1200000,-93.2875000
|
/external/llvm/unittests/Support/ |
D | Casting.cpp | 285 pointer_wrappers::PTy MN(nullptr); 307 EXPECT_TRUE(cast_or_null<pointer_wrappers::Derived>(MN) == nullptr); in TEST() 321 EXPECT_TRUE(dyn_cast_or_null<pointer_wrappers::Derived>(MN) == nullptr); in TEST()
|
/external/llvm-project/llvm/utils/TableGen/ |
D | DAGISelMatcherEmitter.cpp | 701 const EmitMergeInputChainsMatcher *MN = in EmitMatcher() local 705 if (MN->getNumNodes() == 1 && MN->getNode(0) < 3) { in EmitMatcher() 706 OS << "OPC_EmitMergeInputChains1_" << MN->getNode(0) << ",\n"; in EmitMatcher() 710 OS << "OPC_EmitMergeInputChains, " << MN->getNumNodes() << ", "; in EmitMatcher() 711 for (unsigned i = 0, e = MN->getNumNodes(); i != e; ++i) in EmitMatcher() 712 OS << MN->getNode(i) << ", "; in EmitMatcher() 714 return 2+MN->getNumNodes(); in EmitMatcher()
|
/external/icu/icu4c/source/test/fuzzer/ |
D | uregex_open_fuzzer.dict | 102 "MN"
|
/external/llvm-project/llvm/unittests/Support/ |
D | Casting.cpp | 365 pointer_wrappers::PTy MN(nullptr); 387 EXPECT_TRUE(cast_or_null<pointer_wrappers::Derived>(MN) == nullptr); in TEST() 401 EXPECT_TRUE(dyn_cast_or_null<pointer_wrappers::Derived>(MN) == nullptr); in TEST()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 148 MachineSDNode *MN = dyn_cast<MachineSDNode>(N); in CloneNodeWithValues() local 151 if (MN) { in CloneNodeWithValues() 152 Begin = MN->memoperands_begin(); in CloneNodeWithValues() 153 End = MN->memoperands_end(); in CloneNodeWithValues() 159 if (MN) in CloneNodeWithValues() 160 MN->setMemRefs(Begin, End); in CloneNodeWithValues()
|
D | SelectionDAGDumper.cpp | 399 if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(this)) { in print_details() local 400 if (!MN->memoperands_empty()) { in print_details() 403 for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(), in print_details() 404 e = MN->memoperands_end(); i != e; ++i) { in print_details()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 147 MachineSDNode *MN = dyn_cast<MachineSDNode>(N); in CloneNodeWithValues() local 151 if (MN) in CloneNodeWithValues() 152 MMOs.assign(MN->memoperands_begin(), MN->memoperands_end()); in CloneNodeWithValues() 157 if (MN) in CloneNodeWithValues() 158 DAG->setNodeMemRefs(MN, MMOs); in CloneNodeWithValues()
|
/external/icu/icu4c/source/data/region/ |
D | fa_AF.txt | 60 MN{"منگولیا"}
|
D | yi.txt | 145 MN{"מאנגאליי"}
|
D | zgh.txt | 134 MN{"ⵎⵏⵖⵓⵍⵢⴰ"}
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 147 MachineSDNode *MN = dyn_cast<MachineSDNode>(N); in CloneNodeWithValues() local 151 if (MN) in CloneNodeWithValues() 152 MMOs.assign(MN->memoperands_begin(), MN->memoperands_end()); in CloneNodeWithValues() 157 if (MN) in CloneNodeWithValues() 158 DAG->setNodeMemRefs(MN, MMOs); in CloneNodeWithValues()
|
/external/swiftshader/tests/regres/llvm/ |
D | 10.0.0.pub.key | 4 5SkJ/fYedYZJaDVhIp98fHgucD0O+vjOzghtgwtITusYjiPHPFBd/MN+MQqSEAP+
|
/external/swiftshader/tests/kokoro/gcp_ubuntu/ |
D | hans-gpg-key.asc | 4 5SkJ/fYedYZJaDVhIp98fHgucD0O+vjOzghtgwtITusYjiPHPFBd/MN+MQqSEAP+
|
/external/harfbuzz_ng/test/shaping/data/in-house/tests/ |
D | macos.tests | 5 /Library/Fonts/Khmer MN.ttc@5f5b1072df99b7355d3066ea85fe82969d13c94a:--font-funcs ot:U+17A2,U+1780,… 6 /Library/Fonts/Tamil MN.ttc@37a2020c3f86ebcc45e02c1de5fdf81e2676989d:--font-funcs ot:U+0BA4,U+0BCA,… 24 /Library/Fonts/Khmer MN.ttc@782ba6cf3fca0512ab348dfe08345a2d5dc5bf2c:--font-funcs ot:U+17A2,U+1780,… 25 /Library/Fonts/Tamil MN.ttc@3de37f3f8f3cb6015b093fbd6e9d323daaf6fb1d:--font-funcs ot:U+0BA4,U+0BCA,… 43 /Library/Fonts/Khmer MN.ttc@37687fe0bd2548e08e29c92a30e476367ae6356b:--font-funcs ot:U+17A2,U+1780,… 44 /Library/Fonts/Tamil MN.ttc@e1df5e056be08937fd65990efbafff0814c03677:--font-funcs ot:U+0BA4,U+0BCA,…
|
/external/cldr/tools/java/org/unicode/cldr/util/data/external/ |
D | alternate_locode_name.txt | 23 MNULN ; Ulan Bator # MN : Mongolia
|
/external/vixl/src/aarch64/ |
D | disasm-aarch64.cc | 761 #define PAUTH_CASE(NAME, MN) \ in VisitDataProcessing1Source() argument 763 mnemonic = MN "a"; \ in VisitDataProcessing1Source() 767 mnemonic = MN "za"; \ in VisitDataProcessing1Source() 771 mnemonic = MN "b"; \ in VisitDataProcessing1Source() 775 mnemonic = MN "zb"; \ in VisitDataProcessing1Source() 1578 #define AMS(A, MN) \ in VisitAtomicMemory() argument 1580 mnemonic = MN "b"; \ in VisitAtomicMemory() 1583 mnemonic = MN "ab"; \ in VisitAtomicMemory() 1586 mnemonic = MN "lb"; \ in VisitAtomicMemory() 1589 mnemonic = MN "alb"; \ in VisitAtomicMemory() [all …]
|
/external/vixl/test/aarch64/ |
D | test-disasm-aarch64.cc | 1777 #define AM_LOAD_X_TESTS(N, MN) \ in TEST() argument 1778 COMPARE(ld##N(x0, x1, MemOperand(x2)), "ld" MN " x0, x1, [x2]"); \ in TEST() 1779 COMPARE(ld##N(x3, x4, MemOperand(sp)), "ld" MN " x3, x4, [sp]"); in TEST() 1780 #define AM_LOAD_W_TESTS(N, MN) \ in TEST() argument 1781 COMPARE(ld##N(w0, w1, MemOperand(x2)), "ld" MN " w0, w1, [x2]"); \ in TEST() 1782 COMPARE(ld##N(w3, w4, MemOperand(sp)), "ld" MN " w3, w4, [sp]"); in TEST() 1783 #define AM_STORE_X_TESTS(N, MN) \ in TEST() argument 1784 COMPARE(st##N(x0, MemOperand(x1)), "st" MN " x0, [x1]"); \ in TEST() 1785 COMPARE(st##N(x2, MemOperand(sp)), "st" MN " x2, [sp]"); in TEST() 1786 #define AM_STORE_W_TESTS(N, MN) \ in TEST() argument [all …]
|