/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | ConstantMerge.cpp | 105 static CanMerge makeMergeable(GlobalVariable *Old, GlobalVariable *New) { in makeMergeable() argument 106 if (!Old->hasGlobalUnnamedAddr() && !New->hasGlobalUnnamedAddr()) in makeMergeable() 108 if (hasMetadataOtherThanDebugLoc(Old)) in makeMergeable() 111 if (!Old->hasGlobalUnnamedAddr()) in makeMergeable() 116 static void replace(Module &M, GlobalVariable *Old, GlobalVariable *New) { in replace() argument 119 LLVM_DEBUG(dbgs() << "Replacing global: @" << Old->getName() << " -> @" in replace() 123 if (Old->getAlignment() || New->getAlignment()) in replace() 124 New->setAlignment(Align(std::max(getAlignment(Old), getAlignment(New)))); in replace() 126 copyDebugLocMetadata(Old, New); in replace() 127 Old->replaceAllUsesWith(NewConstant); in replace() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Allocator.h | 156 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old) in BumpPtrAllocatorImpl() argument 157 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), in BumpPtrAllocatorImpl() 158 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)), in BumpPtrAllocatorImpl() 159 BytesAllocated(Old.BytesAllocated), in BumpPtrAllocatorImpl() 160 Allocator(std::move(Old.Allocator)) { in BumpPtrAllocatorImpl() 161 Old.CurPtr = Old.End = nullptr; in BumpPtrAllocatorImpl() 162 Old.BytesAllocated = 0; in BumpPtrAllocatorImpl() 163 Old.Slabs.clear(); in BumpPtrAllocatorImpl() 164 Old.CustomSizedSlabs.clear(); in BumpPtrAllocatorImpl() 373 SpecificBumpPtrAllocator(SpecificBumpPtrAllocator &&Old) in SpecificBumpPtrAllocator() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Allocator.h | 158 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old) in BumpPtrAllocatorImpl() argument 159 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), in BumpPtrAllocatorImpl() 160 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)), in BumpPtrAllocatorImpl() 161 BytesAllocated(Old.BytesAllocated), RedZoneSize(Old.RedZoneSize), in BumpPtrAllocatorImpl() 162 Allocator(std::move(Old.Allocator)) { in BumpPtrAllocatorImpl() 163 Old.CurPtr = Old.End = nullptr; in BumpPtrAllocatorImpl() 164 Old.BytesAllocated = 0; in BumpPtrAllocatorImpl() 165 Old.Slabs.clear(); in BumpPtrAllocatorImpl() 166 Old.CustomSizedSlabs.clear(); in BumpPtrAllocatorImpl() 455 SpecificBumpPtrAllocator(SpecificBumpPtrAllocator &&Old) in SpecificBumpPtrAllocator() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyRegColoring.cpp | 138 unsigned Old = LI->reg; in runOnMachineFunction() local 140 const TargetRegisterClass *RC = MRI->getRegClass(Old); in runOnMachineFunction() 143 if (!MRI->isLiveIn(Old)) in runOnMachineFunction() 157 Changed |= Old != New; in runOnMachineFunction() 168 unsigned Old = SortedIntervals[I]->reg; in runOnMachineFunction() local 170 if (Old != New) in runOnMachineFunction() 171 MRI->replaceRegWith(Old, New); in runOnMachineFunction()
|
/third_party/libphonenumber/migrator/src/test/java/com/google/phonenumbers/migrator/testing/testData/ |
D | testRecipesFile.csv | 1 Old Prefix; Old Length; Country Code; Old Format; New Format; Is Final Migration; Description 4 13; 5; 44; 12xxx; xxx6; false; Old Format not in key range -- invalid
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LiveRangeShrink.cpp | 78 MachineInstr *Old, in FindDominatedInstruction() argument 82 return Old; in FindDominatedInstruction() 83 if (Old == nullptr) in FindDominatedInstruction() 85 unsigned OrderOld = M.find(Old)->second; in FindDominatedInstruction() 88 return OrderOld < OrderNew ? &New : Old; in FindDominatedInstruction() 91 for (MachineInstr *I = Old->getNextNode(); M.find(I)->second == OrderNew; in FindDominatedInstruction() 95 return Old; in FindDominatedInstruction()
|
D | InterleavedLoadCombinePass.cpp | 753 VectorInfo Old(VTy); in computeFromBCI() local 754 if (!compute(Op, Old, DL)) in computeFromBCI() 760 ElementInfo(Old.EI[i / Factor].Ofs + j * NewSize, in computeFromBCI() 761 j == 0 ? Old.EI[i / Factor].LI : nullptr); in computeFromBCI() 765 Result.BB = Old.BB; in computeFromBCI() 766 Result.PV = Old.PV; in computeFromBCI() 767 Result.LIs.insert(Old.LIs.begin(), Old.LIs.end()); in computeFromBCI() 768 Result.Is.insert(Old.Is.begin(), Old.Is.end()); in computeFromBCI()
|
D | MachineModuleInfo.cpp | 99 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New); 173 void MMIAddrLabelMap::UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New) { in UpdateForRAUWBlock() argument 175 AddrLabelSymEntry OldEntry = std::move(AddrLabelSymbols[Old]); in UpdateForRAUWBlock() 176 AddrLabelSymbols.erase(Old); in UpdateForRAUWBlock()
|
D | MachineBasicBlock.cpp | 674 void MachineBasicBlock::splitSuccessor(MachineBasicBlock *Old, in splitSuccessor() argument 677 succ_iterator OldI = llvm::find(successors(), Old); in splitSuccessor() 716 void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old, in replaceSuccessor() argument 718 if (Old == New) in replaceSuccessor() 725 if (*I == Old) { in replaceSuccessor() 740 Old->removePredecessor(this); in replaceSuccessor() 1195 void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old, in ReplaceUsesOfBlockWith() argument 1197 assert(Old != New && "Cannot replace self with self!"); in ReplaceUsesOfBlockWith() 1208 I->getOperand(i).getMBB() == Old) in ReplaceUsesOfBlockWith() 1213 replaceSuccessor(Old, New); in ReplaceUsesOfBlockWith() [all …]
|
D | MachineFunction.cpp | 863 void MachineFunction::moveCallSiteInfo(const MachineInstr *Old, in moveCallSiteInfo() argument 867 CallSiteInfoMap::iterator CSIt = getCallSiteInfo(Old); in moveCallSiteInfo() 883 void MachineFunction::copyCallSiteInfo(const MachineInstr *Old, in copyCallSiteInfo() argument 887 CallSiteInfoMap::iterator CSIt = getCallSiteInfo(Old); in copyCallSiteInfo() 950 bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old, in ReplaceMBBInJumpTables() argument 952 assert(Old != New && "Not making a change?"); in ReplaceMBBInJumpTables() 955 ReplaceMBBInJumpTable(i, Old, New); in ReplaceMBBInJumpTables() 962 MachineBasicBlock *Old, in ReplaceMBBInJumpTable() argument 964 assert(Old != New && "Not making a change?"); in ReplaceMBBInJumpTable() 968 if (JTE.MBBs[j] == Old) { in ReplaceMBBInJumpTable()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/ |
D | MSP430FrameLowering.cpp | 237 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local 238 uint64_t Amount = TII.getFrameSize(Old); in eliminateCallFramePseudoInstr() 246 if (Old.getOpcode() == TII.getCallFrameSetupOpcode()) { in eliminateCallFramePseudoInstr() 248 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr() 252 assert(Old.getOpcode() == TII.getCallFrameDestroyOpcode()); in eliminateCallFramePseudoInstr() 254 Amount -= TII.getFramePoppedByCallee(Old); in eliminateCallFramePseudoInstr() 256 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri), in eliminateCallFramePseudoInstr() 274 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local 276 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | OrderedBasicBlock.cpp | 101 void OrderedBasicBlock::replaceInstruction(const Instruction *Old, in replaceInstruction() argument 103 auto OI = NumberedInsts.find(Old); in replaceInstruction() 108 if (LastInstFound != BB->end() && Old == &*LastInstFound) in replaceInstruction() 110 NumberedInsts.erase(Old); in replaceInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 89 SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) { in Clone() argument 90 SUnit *SU = newSUnit(Old->getNode()); in Clone() 91 SU->OrigNode = Old->OrigNode; in Clone() 92 SU->Latency = Old->Latency; in Clone() 93 SU->isVRegCycle = Old->isVRegCycle; in Clone() 94 SU->isCall = Old->isCall; in Clone() 95 SU->isCallOp = Old->isCallOp; in Clone() 96 SU->isTwoAddress = Old->isTwoAddress; in Clone() 97 SU->isCommutable = Old->isCommutable; in Clone() 98 SU->hasPhysRegDefs = Old->hasPhysRegDefs; in Clone() [all …]
|
/third_party/json/tests/thirdparty/Fuzzer/ |
D | FuzzerValueBitMap.h | 36 uintptr_t Old = Map[WordIdx]; in AddValue() local 37 uintptr_t New = Old | (1UL << BitIdx); in AddValue() 39 return New != Old; in AddValue()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | ValueMapper.cpp | 60 DelayedBasicBlock(const BlockAddress &Old) in DelayedBasicBlock() 61 : OldBB(Old.getBasicBlock()), in DelayedBasicBlock() 62 TempBB(BasicBlock::Create(Old.getContext())) {} in DelayedBasicBlock() 601 Metadata *Old = N.getOperand(I); in remapOperands() local 602 Metadata *New = mapOperand(Old); in remapOperands() 604 if (Old != New) in remapOperands() 713 remapOperands(*ClonedN, [this, &D, &G](Metadata *Old) { in mapNodesInPOT() argument 714 if (Optional<Metadata *> MappedOp = getMappedOp(Old)) in mapNodesInPOT() 717 assert(G.Info[Old].ID > D.ID && "Expected a forward reference"); in mapNodesInPOT() 718 return &G.getFwdReference(*cast<MDNode>(Old)); in mapNodesInPOT() [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | lang-tables.dat | 40 /* English, Old (ca. 450-1100) */ 200 /* French, Old (842-ca. 1400) */ 222 /* German, Old High (ca. 750-1050) */ 410 /* Norse, Old */ 418 /* Classical Newari; Old Newari; Classical Nepal Bhasa */ 446 /* Persian, Old (ca. 600-400 B.C.) */ 456 /* Proven?al, Old (to 1500) */ 494 /* Irish, Old (to 900) */ 680 /* Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic */ 1015 "hern Altai\000English, Old (ca. 450-1100)\000Angika\000Apache languages" [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SCCIterator.h | 135 void ReplaceNode(NodeRef Old, NodeRef New) { in ReplaceNode() argument 136 assert(nodeVisitNumbers.count(Old) && "Old not in scc_iterator?"); in ReplaceNode() 139 auto tempVal = nodeVisitNumbers[Old]; in ReplaceNode() 141 nodeVisitNumbers.erase(Old); in ReplaceNode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Value.cpp | 924 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) { in ValueIsRAUWd() argument 925 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present"); in ValueIsRAUWd() 926 assert(Old != New && "Changing value into itself!"); in ValueIsRAUWd() 927 assert(Old->getType() == New->getType() && in ValueIsRAUWd() 932 LLVMContextImpl *pImpl = Old->getContext().pImpl; in ValueIsRAUWd() 933 ValueHandleBase *Entry = pImpl->ValueHandles[Old]; in ValueIsRAUWd() 965 if (Old->HasValueHandle) in ValueIsRAUWd() 966 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next) in ValueIsRAUWd() 969 dbgs() << "After RAUW from " << *Old->getType() << " %" in ValueIsRAUWd() 970 << Old->getName() << " to " << *New->getType() << " %" in ValueIsRAUWd()
|
D | BasicBlock.cpp | 441 void BasicBlock::replacePhiUsesWith(BasicBlock *Old, BasicBlock *New) { in replacePhiUsesWith() argument 448 PN->replaceIncomingBlockWith(Old, New); in replacePhiUsesWith() 452 void BasicBlock::replaceSuccessorsPhiUsesWith(BasicBlock *Old, in replaceSuccessorsPhiUsesWith() argument 459 llvm::for_each(successors(TI), [Old, New](BasicBlock *Succ) { in replaceSuccessorsPhiUsesWith() 460 Succ->replacePhiUsesWith(Old, New); in replaceSuccessorsPhiUsesWith()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/ |
D | DWARFLinkerCompileUnit.h | 37 const auto &Old = *I; in set() local 38 assert(Old.getType() == DIEValue::isInteger); in set() 39 *I = DIEValue(Old.getAttribute(), Old.getForm(), DIEInteger(New)); in set()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineJumpTableInfo.h | 111 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New); 115 bool ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/ |
D | ARCFrameLowering.cpp | 474 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local 475 DebugLoc dl = Old.getDebugLoc(); in eliminateCallFramePseudoInstr() 476 unsigned Amt = Old.getOperand(0).getImm(); in eliminateCallFramePseudoInstr() 479 if (Amt > AFI->MaxCallStackReq && Old.getOpcode() == ARC::ADJCALLSTACKDOWN) in eliminateCallFramePseudoInstr() 483 assert((Old.getOpcode() == ARC::ADJCALLSTACKDOWN || in eliminateCallFramePseudoInstr() 484 Old.getOpcode() == ARC::ADJCALLSTACKUP) && in eliminateCallFramePseudoInstr() 486 bool IsAdd = (Old.getOpcode() == ARC::ADJCALLSTACKUP); in eliminateCallFramePseudoInstr()
|
/third_party/benchmark/docs/ |
D | tools.md | 72 Benchmark Time CPU Time Old Time New CPU Old CPU … 127 … Time CPU Time Old Time New CPU Old … 178 … Time CPU Time Old Time New CPU Old …
|
/third_party/skia/third_party/externals/icu/source/data/lang/ |
D | en.txt | 64 ang{"Old English"} 220 fro{"Old French"} 240 goh{"Old High German"} 443 non{"Old Norse"} 473 peo{"Old Persian"} 482 pro{"Old Provençal"} 531 sga{"Old Irish"} 719 Cyrs{"Old Church Slavonic Cyrillic"} 754 Hung{"Old Hungarian"} 756 Ital{"Old Italic"} [all …]
|
/third_party/icu/icu4c/source/data/lang/ |
D | ar_XB.txt | 61 ang{"Old English"} 216 fro{"Old French"} 236 goh{"Old High German"} 439 non{"Old Norse"} 469 peo{"Old Persian"} 478 pro{"Old Provençal"} 528 sga{"Old Irish"} 705 Cyrs{"Old Church Slavonic Cyrillic"} 737 Hung{"Old Hungarian"} 739 Ital{"Old Italic"} [all …]
|