/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | DFAPacketizer.cpp | 57 bool DFAPacketizer::canReserveResources(const MCInstrDesc *MID) { in canReserveResources() argument 58 unsigned Action = ItinActions[MID->getSchedClass()]; in canReserveResources() 59 if (MID->getSchedClass() == 0 || Action == 0) in canReserveResources() 66 void DFAPacketizer::reserveResources(const MCInstrDesc *MID) { in reserveResources() argument 67 unsigned Action = ItinActions[MID->getSchedClass()]; in reserveResources() 68 if (MID->getSchedClass() == 0 || Action == 0) in reserveResources() 76 const MCInstrDesc &MID = MI.getDesc(); in canReserveResources() local 77 return canReserveResources(&MID); in canReserveResources() 83 const MCInstrDesc &MID = MI.getDesc(); in reserveResources() local 84 reserveResources(&MID); in reserveResources()
|
D | MachinePipeliner.cpp | 2933 bool ResourceManager::canReserveResources(const MCInstrDesc *MID) const { in canReserveResources() 2940 return DFAResources->canReserveResources(MID); in canReserveResources() 2942 unsigned InsnClass = MID->getSchedClass(); in canReserveResources() 2947 dbgs() << "isPseduo:" << MID->isPseudo() << "\n"; in canReserveResources() 2974 void ResourceManager::reserveResources(const MCInstrDesc *MID) { in reserveResources() argument 2980 return DFAResources->reserveResources(MID); in reserveResources() 2982 unsigned InsnClass = MID->getSchedClass(); in reserveResources() 2987 dbgs() << "isPseduo:" << MID->isPseudo() << "\n"; in reserveResources()
|
D | MachineLICM.cpp | 1338 const MCInstrDesc &MID = TII->get(NewOpc); in ExtractHoistableLoad() local 1340 const TargetRegisterClass *RC = TII->getRegClass(MID, LoadRegIndex, TRI, MF); in ExtractHoistableLoad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonOptAddrMode.cpp | 127 const MCInstrDesc &MID = MI.getDesc(); in INITIALIZE_PASS_DEPENDENCY() local 129 if ((!MID.mayStore() && !MID.mayLoad()) || HII->isPredicated(MI)) in INITIALIZE_PASS_DEPENDENCY() 132 if (MID.mayStore()) { in INITIALIZE_PASS_DEPENDENCY() 357 const MCInstrDesc &MID = MI->getDesc(); in processAddUses() local 358 if ((!MID.mayLoad() && !MID.mayStore()) || in processAddUses() 363 MachineOperand BaseOp = MID.mayLoad() ? MI->getOperand(1) in processAddUses() 369 MachineOperand OffsetOp = MID.mayLoad() ? MI->getOperand(2) in processAddUses() 416 const MCInstrDesc &MID = UseMI->getDesc(); in updateAddUses() local 418 MachineOperand &BaseOp = MID.mayLoad() ? UseMI->getOperand(1) in updateAddUses() 420 MachineOperand &OffsetOp = MID.mayLoad() ? UseMI->getOperand(2) in updateAddUses() [all …]
|
D | HexagonInstrInfo.cpp | 2178 const MCInstrDesc &MID = MI.getDesc(); in isExtendable() local 2179 const uint64_t F = MID.TSFlags; in isExtendable()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZHazardRecognizer.cpp | 120 const MCInstrDesc &MID = MI->getDesc(); in has4RegOps() local 122 for (unsigned OpIdx = 0; OpIdx < MID.getNumOperands(); OpIdx++) { in has4RegOps() 123 const TargetRegisterClass *RC = TII->getRegClass(MID, OpIdx, TRI, MF); in has4RegOps() 126 if (OpIdx >= MID.getNumDefs() && in has4RegOps() 127 MID.getOperandConstraint(OpIdx, MCOI::TIED_TO) != -1) in has4RegOps()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmTrinaryMinMaxTests.cpp | 64 MID = 2, enumerator 277 { { BaseType::TYPE_INT, TypeSize::SIZE_8BIT, OperationType::MID }, { genInt8, midInt8 } }, 280 { { BaseType::TYPE_INT, TypeSize::SIZE_16BIT, OperationType::MID }, { genInt16, midInt16 } }, 283 { { BaseType::TYPE_INT, TypeSize::SIZE_32BIT, OperationType::MID }, { genInt32, midInt32 } }, 286 { { BaseType::TYPE_INT, TypeSize::SIZE_64BIT, OperationType::MID }, { genInt64, midInt64 } }, 289 { { BaseType::TYPE_UINT, TypeSize::SIZE_8BIT, OperationType::MID }, { genUint8, midUint8 } }, 292 { { BaseType::TYPE_UINT, TypeSize::SIZE_16BIT, OperationType::MID }, { genUint16, midUint16 } }, 295 { { BaseType::TYPE_UINT, TypeSize::SIZE_32BIT, OperationType::MID }, { genUint32, midUint32 } }, 298 { { BaseType::TYPE_UINT, TypeSize::SIZE_64BIT, OperationType::MID }, { genUint64, midUint64 } }, 301 { { BaseType::TYPE_FLOAT, TypeSize::SIZE_16BIT, OperationType::MID }, { genFloat16, midFloat16 } }, [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | DFAPacketizer.h | 79 bool canReserveResources(const MCInstrDesc *MID); 83 void reserveResources(const MCInstrDesc *MID);
|
D | MachinePipeliner.h | 456 bool canReserveResources(const MCInstrDesc *MID) const; 460 void reserveResources(const MCInstrDesc *MID);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/ |
D | ARCInstrInfo.cpp | 413 const MCInstrDesc &MID = MI.getDesc(); in isPostIncrement() local 414 const uint64_t F = MID.TSFlags; in isPostIncrement() 419 const MCInstrDesc &MID = MI.getDesc(); in isPreIncrement() local 420 const uint64_t F = MID.TSFlags; in isPreIncrement()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Module.cpp | 73 Module::Module(StringRef MID, LLVMContext &C) in Module() argument 74 : Context(C), Materializer(), ModuleID(MID), SourceFileName(MID), DL("") { in Module()
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_distributedHardware_deviceManager.js | 46 MID: 1, property
|
/third_party/ffmpeg/libavcodec/ |
D | mpegvideo_motion.c | 464 #define MID 0 in obmc_motion() macro 472 if (i && mv[i][0] == mv[MID][0] && mv[i][1] == mv[MID][1]) { in obmc_motion() 473 ptr[i] = ptr[MID]; in obmc_motion()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopDistribute.cpp | 716 MemoryInstructionDependences MID(DepChecker.getMemoryInstructions(), in processLoop() local 720 for (auto &InstDep : MID) { in processLoop()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | LLParser.cpp | 678 unsigned MID = 0; in ParseMDNodeID() local 679 if (ParseUInt32(MID)) in ParseMDNodeID() 683 if (NumberedMetadata.count(MID)) { in ParseMDNodeID() 684 Result = NumberedMetadata[MID]; in ParseMDNodeID() 689 auto &FwdRef = ForwardRefMDNodes[MID]; in ParseMDNodeID() 693 NumberedMetadata[MID].reset(Result); in ParseMDNodeID()
|
/third_party/typescript/tests/baselines/reference/ |
D | fixSignatureCaching.types | 5 …MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", "RockChipTablet": "Android.*(RK2818|RK… 6 …MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", "RockChipTablet": "Android.*(RK2818|RK… 7 …MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", "RockChipTablet": "Android.*(RK2818|RK… 12 …MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", "RockChipTablet": "Android.*(RK2818|RK… 14 …MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", "RockChipTablet": "Android.*(RK2818|RK… 24 …MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", "RockChipTablet": "Android.*(RK2818|RK… 28 …MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", "RockChipTablet": "Android.*(RK2818|RK… 137 …MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", "RockChipTablet": "Android.*(RK2818|RK… 279 "SMiTTablet": "Android.*(\\bMID\\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", 281 >"Android.*(\\bMID\\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)" : "Android.*(\\bMID\\b|MI… [all …]
|
D | fixSignatureCaching.errors.txt | 137 "SMiTTablet": "Android.*(\\bMID\\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", 215 …"GenericTablet": "Android.*\\b97D\\b|Tablet(?!.*PC)|BNTV250A|MID-WCDMA|LogicPD Zoom2|\\bA7EB\\b|Ca…
|
D | fixSignatureCaching.symbols | 206 "SMiTTablet": "Android.*(\\bMID\\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)", 440 …"GenericTablet": "Android.*\\b97D\\b|Tablet(?!.*PC)|BNTV250A|MID-WCDMA|LogicPD Zoom2|\\bA7EB\\b|Ca…
|
/third_party/ffmpeg/doc/ |
D | indevs.texi | 423 KLV VANC packets are joined based on MID and PSC fields and aggregated into
|
/third_party/skia/third_party/externals/icu/source/data/unidata/ |
D | confusables.txt | 1064 A714 ; 02EB ; MA #* ( ꜔ → ˫ ) MODIFIER LETTER MID LEFT-STEM TONE BAR → MODIFIER LETTER YANG DEPARTI… 7008 …( → ) PAU CIN HAU RISING TONE → PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7012 …L → PAU CIN HAU RISING TONE LONG, PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7018 … ) PAU CIN HAU LOW-FALLING TONE → PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7022 …N HAU LOW-FALLING TONE LONG, PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7028 …( → ) PAU CIN HAU SANDHI TONE → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7032 …L → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→
|
/third_party/flutter/skia/third_party/externals/icu/source/data/unidata/ |
D | confusables.txt | 1064 A714 ; 02EB ; MA #* ( ꜔ → ˫ ) MODIFIER LETTER MID LEFT-STEM TONE BAR → MODIFIER LETTER YANG DEPARTI… 6988 …( → ) PAU CIN HAU RISING TONE → PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 6992 …L → PAU CIN HAU RISING TONE LONG, PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 6998 … ) PAU CIN HAU LOW-FALLING TONE → PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7002 …N HAU LOW-FALLING TONE LONG, PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7008 …( → ) PAU CIN HAU SANDHI TONE → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7012 …L → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→
|
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/data/unicode/ |
D | confusables.txt | 1064 A714 ; 02EB ; MA #* ( ꜔ → ˫ ) MODIFIER LETTER MID LEFT-STEM TONE BAR → MODIFIER LETTER YANG DEPARTI… 7008 …( → ) PAU CIN HAU RISING TONE → PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7012 …L → PAU CIN HAU RISING TONE LONG, PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7018 … ) PAU CIN HAU LOW-FALLING TONE → PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7022 …N HAU LOW-FALLING TONE LONG, PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7028 …( → ) PAU CIN HAU SANDHI TONE → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7032 …L → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/ |
D | confusables.txt | 1064 A714 ; 02EB ; MA #* ( ꜔ → ˫ ) MODIFIER LETTER MID LEFT-STEM TONE BAR → MODIFIER LETTER YANG DEPARTI… 7008 …( → ) PAU CIN HAU RISING TONE → PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7012 …L → PAU CIN HAU RISING TONE LONG, PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7018 … ) PAU CIN HAU LOW-FALLING TONE → PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7022 …N HAU LOW-FALLING TONE LONG, PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7028 …( → ) PAU CIN HAU SANDHI TONE → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7032 …L → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→
|
/third_party/icu/icu4c/source/data/unidata/ |
D | confusables.txt | 1064 A714 ; 02EB ; MA #* ( ꜔ → ˫ ) MODIFIER LETTER MID LEFT-STEM TONE BAR → MODIFIER LETTER YANG DEPARTI… 7008 …( → ) PAU CIN HAU RISING TONE → PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7012 …L → PAU CIN HAU RISING TONE LONG, PAU CIN HAU RISING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7018 … ) PAU CIN HAU LOW-FALLING TONE → PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7022 …N HAU LOW-FALLING TONE LONG, PAU CIN HAU LOW-FALLING TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→ 7028 …( → ) PAU CIN HAU SANDHI TONE → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # 7032 …L → PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU SANDHI TONE LONG, PAU CIN HAU MID-LEVEL TONE # →→
|
/third_party/eudev/hwdb/ |
D | 20-acpi-vendor.hwdb | 4353 acpi:MID*:
|