Home
last modified time | relevance | path

Searched refs:Old (Results 1 – 25 of 542) sorted by relevance

12345678910>>...22

/external/e2fsprogs/tests/progs/test_data/
Dexpect.irel20 Old= 3, New= 9, Original=3, Max_refs=1
22 Old= 1, New= 8, Original=1, Max_refs=3
26 Old= 1, New= 8, Original=1, Max_refs=3
29 Old= 2, New= 11, Original=2, Max_refs=3
32 Old= 3, New= 9, Original=3, Max_refs=1
42 Old= 2, New= 8, Original=1, Max_refs=3
44 Old= 3, New= 9, Original=3, Max_refs=1
51 Old= 3, New= 9, Original=3, Max_refs=1
52 Old= 4, New= 8, Original=1, Max_refs=3
55 Old= 3, New= 9, Original=3, Max_refs=1
[all …]
Dexpect.brel16 Old= 3, New= 9, Owner= 0:0
18 Old= 1, New= 10, Owner= 4:128
21 Old= 1, New= 10, Owner= 4:128
23 Old= 2, New= 11, Owner= 0:0
25 Old= 3, New= 9, Owner= 0:0
40 Old= 3, New= 9, Owner= 0:0
41 Old= 5, New= 10, Owner= 4:128
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DConstantMerge.cpp105 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 …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DAllocator.h156 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 …]
/external/llvm/include/llvm/Support/
DAllocator.h153 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old) in BumpPtrAllocatorImpl() argument
154 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), in BumpPtrAllocatorImpl()
155 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)), in BumpPtrAllocatorImpl()
156 BytesAllocated(Old.BytesAllocated), in BumpPtrAllocatorImpl()
157 Allocator(std::move(Old.Allocator)) { in BumpPtrAllocatorImpl()
158 Old.CurPtr = Old.End = nullptr; in BumpPtrAllocatorImpl()
159 Old.BytesAllocated = 0; in BumpPtrAllocatorImpl()
160 Old.Slabs.clear(); in BumpPtrAllocatorImpl()
161 Old.CustomSizedSlabs.clear(); in BumpPtrAllocatorImpl()
370 SpecificBumpPtrAllocator(SpecificBumpPtrAllocator &&Old) in SpecificBumpPtrAllocator() argument
[all …]
/external/clang/lib/Sema/
DSemaExceptionSpec.cpp212 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { in CheckEquivalentExceptionSpec() argument
229 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(), in CheckEquivalentExceptionSpec()
238 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) { in CheckEquivalentExceptionSpec()
240 << hasImplicitExceptionSpec(Old); in CheckEquivalentExceptionSpec()
241 if (Old->getLocation().isValid()) in CheckEquivalentExceptionSpec()
242 Diag(Old->getLocation(), diag::note_previous_declaration); in CheckEquivalentExceptionSpec()
264 (Old->getLocation().isInvalid() || in CheckEquivalentExceptionSpec()
265 Context.getSourceManager().isInSystemHeader(Old->getLocation())) && in CheckEquivalentExceptionSpec()
266 Old->isExternC()) { in CheckEquivalentExceptionSpec()
274 Old->getType()->castAs<FunctionProtoType>(); in CheckEquivalentExceptionSpec()
[all …]
DSemaDecl.cpp1871 NamedDecl *Old = Filter.next(); in filterNonConflictingPreviousTypedefDecls() local
1874 if (S.isVisible(Old)) in filterNonConflictingPreviousTypedefDecls()
1879 if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) { in filterNonConflictingPreviousTypedefDecls()
1898 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { in isIncompatibleTypedef() argument
1900 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old)) in isIncompatibleTypedef()
1903 OldType = Context.getTypeDeclType(Old); in isIncompatibleTypedef()
1908 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
1911 if (Old->getLocation().isValid()) in isIncompatibleTypedef()
1912 Diag(Old->getLocation(), diag::note_previous_definition); in isIncompatibleTypedef()
1921 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DAllocator.h158 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 …]
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyRegColoring.cpp137 unsigned Old = LI->reg; in runOnMachineFunction() local
139 const TargetRegisterClass *RC = MRI->getRegClass(Old); in runOnMachineFunction()
142 if (!MRI->isLiveIn(Old)) in runOnMachineFunction()
157 Changed |= Old != New; in runOnMachineFunction()
169 unsigned Old = SortedIntervals[i]->reg; in runOnMachineFunction() local
171 if (Old != New) in runOnMachineFunction()
172 MRI->replaceRegWith(Old, New); in runOnMachineFunction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyRegColoring.cpp138 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()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveRangeShrink.cpp78 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()
/external/llvm/lib/Target/MSP430/
DMSP430FrameLowering.cpp238 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
239 uint64_t Amount = Old.getOperand(0).getImm(); in eliminateCallFramePseudoInstr()
247 if (Old.getOpcode() == TII.getCallFrameSetupOpcode()) { in eliminateCallFramePseudoInstr()
249 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
253 assert(Old.getOpcode() == TII.getCallFrameDestroyOpcode()); in eliminateCallFramePseudoInstr()
255 uint64_t CalleeAmt = Old.getOperand(1).getImm(); in eliminateCallFramePseudoInstr()
258 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri), in eliminateCallFramePseudoInstr()
276 MachineInstr &Old = *I; in eliminateCallFramePseudoInstr() local
278 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP) in eliminateCallFramePseudoInstr()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430FrameLowering.cpp237 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()
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/utilities/memory/util.smartptr/util.smartptr.shared/
Dlibcxx.control_block_layout.pass.cpp57 using Old = OldEmplaceControlBlock<T, Alloc<T>>; in test() typedef
60 static_assert(sizeof(New) == sizeof(Old), ""); in test()
61 static_assert(alignof(New) == alignof(Old), ""); in test()
65 Old old(a); in test()
88 static_assert(std::is_trivial<New>::value == std::is_trivial<Old>::value, ""); in test()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DOrderedBasicBlock.cpp101 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()
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerValueBitMap.h37 uintptr_t Old = Map[WordIdx]; in AddValue() local
38 uintptr_t New = Old | (1ULL << BitIdx); in AddValue()
40 return New != Old; in AddValue()
/external/llvm/unittests/IR/
DValueMapTest.cpp187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
191 static void onDelete(const ExtraData &Data, KeyT Old) { in onDelete()
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
245 static void onDelete(const ExtraData &Data, KeyT Old) { in onDelete()
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) { in onRAUW()
275 (*Map)->erase(Old); in onRAUW()
277 static void onDelete(ExtraData Map, KeyT Old) { in onDelete()
278 (*Map)->erase(Old); in onDelete()
/external/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGSDNodes.cpp89 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 …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGSDNodes.cpp89 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 …]
/external/google-java-format/core/src/test/resources/com/google/googlejavaformat/java/testdata/
DB26928842.input5 curr.getData().getPushCertficate()) // Old, misspelled
6 .clearPushCertficate() // Old, misspelled
DB26928842.output6 curr.getData().getPushCertficate()) // Old, misspelled
7 .clearPushCertficate() // Old, misspelled
/external/llvm/lib/Transforms/Utils/
DValueMapper.cpp50 DelayedBasicBlock(const BlockAddress &Old) in DelayedBasicBlock()
51 : OldBB(Old.getBasicBlock()), in DelayedBasicBlock()
52 TempBB(BasicBlock::Create(Old.getContext())) {} in DelayedBasicBlock()
591 Metadata *Old = N.getOperand(I); in remapOperands() local
592 Metadata *New = mapOperand(Old); in remapOperands()
594 if (Old != New) in remapOperands()
701 remapOperands(*ClonedN, [this, &D, &G](Metadata *Old) { in mapNodesInPOT() argument
702 if (Optional<Metadata *> MappedOp = getMappedOp(Old)) in mapNodesInPOT()
704 assert(G.Info[Old].ID > D.ID && "Expected a forward reference"); in mapNodesInPOT()
705 return &G.getFwdReference(*cast<MDNode>(Old)); in mapNodesInPOT()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DValueMapper.cpp60 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 …]
/external/python/cpython2/Mac/Modules/ae/
DREADME17 echo.py Old test program (may still work) to echo events back to sender
22 tae.py Old test program (may still work) to send an appleevent
23 tell.py Old test program (may still work) to send an appleevent
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSCCIterator.h135 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()

12345678910>>...22