/external/swiftshader/third_party/llvm-7.0/llvm/unittests/XRay/ |
D | GraphTest.cpp | 103 auto Pred = [&](const EVT &EV) { return EV.first == u; }; in graphEdgeTester() argument 109 for (auto &EV : G.edges()) { in graphEdgeTester() local 110 EXPECT_EQ(1u, E.count(EV.first)); in graphEdgeTester() 111 EXPECT_EQ(VA[EV.first.first] * VA[EV.first.second] * in graphEdgeTester() 112 ((EV.first.first > EV.first.second) ? 2 : 1), in graphEdgeTester() 113 EV.second.EA); in graphEdgeTester() 114 const auto &IE = G.inEdges(EV.first.second); in graphEdgeTester() 115 const auto &OE = G.outEdges(EV.first.first); in graphEdgeTester() 122 G.inEdges(EV.first.second).begin(), G.inEdges(EV.first.second).end(), in graphEdgeTester() 123 [&](const EVT &EVI) { return EVI.first == EV.first; }); in graphEdgeTester() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonConstExtenders.cpp | 366 bool operator<(const ExtValue &EV) const; 367 bool operator==(const ExtValue &EV) const { in operator ==() 368 return ExtRoot(*this) == ExtRoot(EV) && Offset == EV.Offset; in operator ==() 370 bool operator!=(const ExtValue &EV) const { in operator !=() 371 return !operator==(EV); in operator !=() 426 friend raw_ostream &operator<< (raw_ostream &OS, const ExtValue &EV); 542 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtValue &EV) { in operator <<() argument 543 OS << HCE::ExtRoot(EV) << " off:" << EV.Offset; in operator <<() 772 bool HCE::ExtValue::operator< (const HCE::ExtValue &EV) const { in operator <() 774 if (!(ER == ExtRoot(EV))) in operator <() [all …]
|
/external/llvm/tools/llvm-readobj/ |
D | Error.cpp | 34 std::string _readobj_error_category::message(int EV) const { in message() 35 switch (static_cast<readobj_error>(EV)) { in message()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
D | Error.cpp | 34 std::string _readobj_error_category::message(int EV) const { in message() 35 switch (static_cast<readobj_error>(EV)) { in message()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1256 Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) { in visitExtractValueInst() argument 1257 Value *Agg = EV.getAggregateOperand(); in visitExtractValueInst() 1259 if (!EV.hasIndices()) in visitExtractValueInst() 1260 return ReplaceInstUsesWith(EV, Agg); in visitExtractValueInst() 1264 return ReplaceInstUsesWith(EV, UndefValue::get(EV.getType())); in visitExtractValueInst() 1267 return ReplaceInstUsesWith(EV, Constant::getNullValue(EV.getType())); in visitExtractValueInst() 1271 Value *V = C->getOperand(*EV.idx_begin()); in visitExtractValueInst() 1272 if (EV.getNumIndices() > 1) in visitExtractValueInst() 1275 return ExtractValueInst::Create(V, EV.getIndices().slice(1)); in visitExtractValueInst() 1277 return ReplaceInstUsesWith(EV, V); in visitExtractValueInst() [all …]
|
/external/bcc/src/lua/bpf/ |
D | elf.lua | 151 local EV = { NONE=0, CURRENT=1, NUM=2 } 247 if elf.elf_version(EV.CURRENT) == EV.NONE then
|
/external/llvm/lib/Object/ |
D | Error.cpp | 36 std::string _object_error_category::message(int EV) const { in message() 37 object_error E = static_cast<object_error>(EV); in message()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | Error.cpp | 36 std::string _object_error_category::message(int EV) const { in message() 37 object_error E = static_cast<object_error>(EV); in message()
|
/external/llvm/lib/Support/ |
D | ErrorHandling.cpp | 151 std::error_code llvm::mapWindowsError(unsigned EV) { in mapWindowsError() argument 152 switch (EV) { in mapWindowsError() 203 return std::error_code(EV, std::system_category()); in mapWindowsError()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | ErrorHandling.cpp | 151 std::error_code llvm::mapWindowsError(unsigned EV) { in mapWindowsError() argument 152 switch (EV) { in mapWindowsError() 203 return std::error_code(EV, std::system_category()); in mapWindowsError()
|
/external/llvm/lib/Transforms/IPO/ |
D | IPConstantPropagation.cpp | 228 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Ins)) in PropagateConstantReturn() local 229 if (EV->hasIndices()) in PropagateConstantReturn() 230 index = *EV->idx_begin(); in PropagateConstantReturn()
|
/external/clang/test/Sema/ |
D | ms_class_layout.cpp | 140 struct EV : CV, DV { struct 159 EV *j; in main()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | IPConstantPropagation.cpp | 234 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Ins)) in PropagateConstantReturn() local 235 if (EV->hasIndices()) in PropagateConstantReturn() 236 index = *EV->idx_begin(); in PropagateConstantReturn()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | IPConstantPropagation.cpp | 257 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Ins)) in PropagateConstantReturn() local 258 if (EV->hasIndices()) in PropagateConstantReturn() 259 index = *EV->idx_begin(); in PropagateConstantReturn()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | ErrorHandling.cpp | 255 std::error_code llvm::mapWindowsError(unsigned EV) { in mapWindowsError() argument 256 switch (EV) { in mapWindowsError() 307 return std::error_code(EV, std::system_category()); in mapWindowsError()
|
/external/icu/icu4j/perf-tests/data/collation/ |
D | TestNames_SerbianSH.txt | 1115 ŠĆERBAĆEV GLIGORIJE 1116 ŠĆEVČIK PAVLE 1288 ŠARČEV ANTONIJA 1289 ŠARČEV JELENA 1290 ŠARČEV MIROSLAVA 1291 ŠARČEV NIKOLA 1292 ŠARČEV VLADIMIR 1638 ŠEVČIĆ ĐORĐE 2540 ŠTEVANČEV LJUBOMIR 2804 ŠURJANČEV IVAN [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | WindowsError.h | 16 std::error_code mapWindowsError(unsigned EV);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | WindowsError.h | 16 std::error_code mapWindowsError(unsigned EV);
|
/external/llvm/include/llvm/Support/ |
D | WindowsError.h | 16 std::error_code mapWindowsError(unsigned EV);
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | 707e09a7934ddeb7aafeda92142b65f4.0000257c.honggfuzz.cov | 33 M�j����b�x��,m�d����ySXe�{��1��EVT���� 37 M�j����b�x��,m�d����ySXe�{��1��EVT���� 41 M�j����b�x��,m�d����ySXe�{��1��EVT����
|
D | 3bff150c0e050946c9f2b85d3e34a7df.00002fbc.honggfuzz.cov | 37 M�j����b�x��,m�d����ySXe�{��1��EVT���� 45 M�j����b�x��,m�d����ySXe�{��1��EVT����
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 2231 Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) { in visitExtractValueInst() argument 2232 Value *Agg = EV.getAggregateOperand(); in visitExtractValueInst() 2234 if (!EV.hasIndices()) in visitExtractValueInst() 2235 return replaceInstUsesWith(EV, Agg); in visitExtractValueInst() 2238 SimplifyExtractValueInst(Agg, EV.getIndices(), DL, TLI, DT, AC)) in visitExtractValueInst() 2239 return replaceInstUsesWith(EV, V); in visitExtractValueInst() 2244 for (exti = EV.idx_begin(), insi = IV->idx_begin(), in visitExtractValueInst() 2245 exte = EV.idx_end(), inse = IV->idx_end(); in visitExtractValueInst() 2258 EV.getIndices()); in visitExtractValueInst() 2265 return replaceInstUsesWith(EV, IV->getInsertedValueOperand()); in visitExtractValueInst() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 2400 Instruction *InstCombiner::visitExtractValueInst(ExtractValueInst &EV) { in visitExtractValueInst() argument 2401 Value *Agg = EV.getAggregateOperand(); in visitExtractValueInst() 2403 if (!EV.hasIndices()) in visitExtractValueInst() 2404 return replaceInstUsesWith(EV, Agg); in visitExtractValueInst() 2406 if (Value *V = SimplifyExtractValueInst(Agg, EV.getIndices(), in visitExtractValueInst() 2407 SQ.getWithInstruction(&EV))) in visitExtractValueInst() 2408 return replaceInstUsesWith(EV, V); in visitExtractValueInst() 2413 for (exti = EV.idx_begin(), insi = IV->idx_begin(), in visitExtractValueInst() 2414 exte = EV.idx_end(), inse = IV->idx_end(); in visitExtractValueInst() 2427 EV.getIndices()); in visitExtractValueInst() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | AtomicExpandPass.cpp | 1154 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User); in expandAtomicCmpXchg() local 1155 if (!EV) in expandAtomicCmpXchg() 1158 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 && in expandAtomicCmpXchg() 1161 if (EV->getIndices()[0] == 0) in expandAtomicCmpXchg() 1162 EV->replaceAllUsesWith(Loaded); in expandAtomicCmpXchg() 1164 EV->replaceAllUsesWith(Success); in expandAtomicCmpXchg() 1166 PrunedInsts.push_back(EV); in expandAtomicCmpXchg() 1170 for (auto EV : PrunedInsts) in expandAtomicCmpXchg() local 1171 EV->eraseFromParent(); in expandAtomicCmpXchg()
|
/external/llvm/lib/CodeGen/ |
D | AtomicExpandPass.cpp | 1150 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User); in expandAtomicCmpXchg() local 1151 if (!EV) in expandAtomicCmpXchg() 1154 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 && in expandAtomicCmpXchg() 1157 if (EV->getIndices()[0] == 0) in expandAtomicCmpXchg() 1158 EV->replaceAllUsesWith(Loaded); in expandAtomicCmpXchg() 1160 EV->replaceAllUsesWith(Success); in expandAtomicCmpXchg() 1162 PrunedInsts.push_back(EV); in expandAtomicCmpXchg() 1166 for (auto EV : PrunedInsts) in expandAtomicCmpXchg() local 1167 EV->eraseFromParent(); in expandAtomicCmpXchg()
|