Home
last modified time | relevance | path

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

12345678

/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/clang/lib/Sema/
DSemaExceptionSpec.cpp153 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { in CheckEquivalentExceptionSpec() argument
166 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(), in CheckEquivalentExceptionSpec()
175 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) { in CheckEquivalentExceptionSpec()
177 << hasImplicitExceptionSpec(Old); in CheckEquivalentExceptionSpec()
178 if (!Old->getLocation().isInvalid()) in CheckEquivalentExceptionSpec()
179 Diag(Old->getLocation(), diag::note_previous_declaration); in CheckEquivalentExceptionSpec()
201 (Old->getLocation().isInvalid() || in CheckEquivalentExceptionSpec()
202 Context.getSourceManager().isInSystemHeader(Old->getLocation())) && in CheckEquivalentExceptionSpec()
203 Old->isExternC()) { in CheckEquivalentExceptionSpec()
213 Old->getType()->castAs<FunctionProtoType>(); in CheckEquivalentExceptionSpec()
[all …]
DSemaDecl.cpp1637 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { in isIncompatibleTypedef() argument
1639 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old)) in isIncompatibleTypedef()
1642 OldType = Context.getTypeDeclType(Old); in isIncompatibleTypedef()
1647 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
1650 if (Old->getLocation().isValid()) in isIncompatibleTypedef()
1651 Diag(Old->getLocation(), diag::note_previous_definition); in isIncompatibleTypedef()
1660 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
1663 if (Old->getLocation().isValid()) in isIncompatibleTypedef()
1664 Diag(Old->getLocation(), diag::note_previous_definition); in isIncompatibleTypedef()
1723 TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>(); in MergeTypedefNameDecl() local
[all …]
/external/llvm/lib/Target/Mips/
DMipsJITInfo.cpp29 void MipsJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { in replaceMachineCodeForFunction() argument
31 unsigned OldAddr = (intptr_t)Old; in replaceMachineCodeForFunction()
36 unsigned *OldInstruction = (unsigned *)Old; in replaceMachineCodeForFunction()
47 sys::Memory::InvalidateInstructionCache(Old, 2 * 4); in replaceMachineCodeForFunction()
51 unsigned* CurrentInstr = (unsigned*)Old; in replaceMachineCodeForFunction()
70 sys::Memory::InvalidateInstructionCache(Old, 4 * 4); in replaceMachineCodeForFunction()
/external/llvm/lib/Target/MSP430/
DMSP430FrameLowering.cpp237 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
238 uint64_t Amount = Old->getOperand(0).getImm(); in eliminateCallFramePseudoInstr()
246 if (Old->getOpcode() == TII.getCallFrameSetupOpcode()) { in eliminateCallFramePseudoInstr()
247 New = BuildMI(MF, Old->getDebugLoc(), in eliminateCallFramePseudoInstr()
251 assert(Old->getOpcode() == TII.getCallFrameDestroyOpcode()); in eliminateCallFramePseudoInstr()
253 uint64_t CalleeAmt = Old->getOperand(1).getImm(); in eliminateCallFramePseudoInstr()
256 New = BuildMI(MF, Old->getDebugLoc(), in eliminateCallFramePseudoInstr()
273 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
275 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri), in eliminateCallFramePseudoInstr()
/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()
241 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
244 static void onDelete(const ExtraData &Data, KeyT Old) { in onDelete()
273 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) { in onRAUW()
274 (*Map)->erase(Old); in onRAUW()
276 static void onDelete(ExtraData Map, KeyT Old) { in onDelete()
277 (*Map)->erase(Old); in onDelete()
/external/llvm/lib/IR/
DValue.cpp640 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) { in ValueIsRAUWd() argument
641 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present"); in ValueIsRAUWd()
642 assert(Old != New && "Changing value into itself!"); in ValueIsRAUWd()
646 LLVMContextImpl *pImpl = Old->getContext().pImpl; in ValueIsRAUWd()
647 ValueHandleBase *Entry = pImpl->ValueHandles[Old]; in ValueIsRAUWd()
685 if (Old->HasValueHandle) in ValueIsRAUWd()
686 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next) in ValueIsRAUWd()
690 dbgs() << "After RAUW from " << *Old->getType() << " %" in ValueIsRAUWd()
691 << Old->getName() << " to " << *New->getType() << " %" in ValueIsRAUWd()
/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/llvm/include/llvm/ADT/
DSCCIterator.h189 void ReplaceNode(NodeType *Old, NodeType *New) { in ReplaceNode() argument
190 assert(nodeVisitNumbers.count(Old) && "Old not in scc_iterator?"); in ReplaceNode()
191 nodeVisitNumbers[New] = nodeVisitNumbers[Old]; in ReplaceNode()
192 nodeVisitNumbers.erase(Old); in ReplaceNode()
DImmutableIntervalMap.h220 ImmutableIntervalMap add(ImmutableIntervalMap Old, in add() argument
222 TreeTy *T = F.add(Old.Root, std::pair<key_type, data_type>(K, D)); in add()
226 ImmutableIntervalMap remove(ImmutableIntervalMap Old, key_type_ref K) { in remove() argument
227 TreeTy *T = F.remove(Old.Root, K); in remove()
/external/llvm/include/llvm/CodeGen/
DMachineJumpTableInfo.h111 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New);
115 bool ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old,
/external/valgrind/main/gdbserver_tests/
Dmcwatchpoints.stdoutB.exp20 Old value = 102 'f'
26 Old value = 100 'd'
/external/icu4c/data/lang/
Den.txt52 ang{"Old English"}
203 fro{"Old French"}
219 goh{"Old High German"}
410 non{"Old Norse"}
438 peo{"Old Persian"}
445 pro{"Old Provençal"}
487 sga{"Old Irish"}
640 Cyrs{"Old Church Slavonic Cyrillic"}
666 Hung{"Old Hungarian"}
668 Ital{"Old Italic"}
[all …]
/external/chromium_org/third_party/icu/source/data/lang/
Den.txt38 ang{"Old English"}
178 fro{"Old French"}
194 goh{"Old High German"}
371 non{"Old Norse"}
398 peo{"Old Persian"}
405 pro{"Old Provençal"}
445 sga{"Old Irish"}
591 Cyrs{"Old Church Slavonic Cyrillic"}
615 Hung{"Old Hungarian"}
617 Ital{"Old Italic"}
[all …]
/external/llvm/lib/Target/XCore/
DXCoreFrameLowering.cpp312 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
313 uint64_t Amount = Old->getOperand(0).getImm(); in eliminateCallFramePseudoInstr()
335 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) { in eliminateCallFramePseudoInstr()
337 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode)) in eliminateCallFramePseudoInstr()
340 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP); in eliminateCallFramePseudoInstr()
342 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP) in eliminateCallFramePseudoInstr()
/external/clang/include/clang/AST/
DASTUnresolvedSet.h51 bool replace(const NamedDecl* Old, NamedDecl *New, AccessSpecifier AS) { in replace() argument
53 if (I->getDecl() == Old) { in replace()
/external/llvm/lib/Transforms/InstCombine/
DInstCombine.h243 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) { in InsertNewInstBefore() argument
246 BasicBlock *BB = Old.getParent(); in InsertNewInstBefore()
247 BB->getInstList().insert(&Old, New); // Insert inst in InsertNewInstBefore()
255 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) { in InsertNewInstWith() argument
256 New->setDebugLoc(Old.getDebugLoc()); in InsertNewInstWith()
257 return InsertNewInstBefore(New, Old); in InsertNewInstWith()
/external/ppp/pppd/plugins/radius/etc/
Ddictionary.compat12 ATTRIBUTE Old-Password 17 string
40 # For compatibility with ESVA RADIUS, Old Cistron RADIUS
/external/llvm/lib/Analysis/
DProfileInfo.cpp412 void ProfileInfoT<Function,BasicBlock>::splitBlock(const BasicBlock *Old, in splitBlock() argument
414 const Function *F = Old->getParent(); in splitBlock()
419 DEBUG(dbgs() << "Splitting " << Old->getName() << " to " << New->getName() << "\n"); in splitBlock()
425 if (old.first == Old) { in splitBlock()
435 double w = getExecutionCount(Old); in splitBlock()
436 setEdgeWeight(getEdge(Old, New), w); in splitBlock()
478 void ProfileInfoT<Function,BasicBlock>::transfer(const Function *Old, in transfer() argument
480 DEBUG(dbgs() << "Replacing Function " << Old->getName() << " with " in transfer()
483 EdgeInformation.find(Old); in transfer()
487 EdgeInformation.erase(Old); in transfer()
[all …]
/external/llvm/lib/Target/PowerPC/
DPPCJITInfo.cpp468 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { in replaceMachineCodeForFunction() argument
469 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit); in replaceMachineCodeForFunction()
470 sys::Memory::InvalidateInstructionCache(Old, 7*4); in replaceMachineCodeForFunction()
/external/llvm/test/YAMLParser/
Dconstruct-value.data3 --- # Old schema
/external/llvm/lib/Transforms/Utils/
DValueMapper.cpp215 MDNode *Old = MI->second; in RemapInstruction() local
216 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper, Materializer); in RemapInstruction()
217 if (New != Old) in RemapInstruction()
/external/llvm/lib/Transforms/Scalar/
DSROA.cpp1723 static Value *insertInteger(const DataLayout &DL, IRBuilderTy &IRB, Value *Old, in insertInteger() argument
1725 IntegerType *IntTy = cast<IntegerType>(Old->getType()); in insertInteger()
1746 Old = IRB.CreateAnd(Old, Mask, Name + ".mask"); in insertInteger()
1747 DEBUG(dbgs() << " masked: " << *Old << "\n"); in insertInteger()
1748 V = IRB.CreateOr(Old, V, Name + ".insert"); in insertInteger()
1782 static Value *insertVector(IRBuilderTy &IRB, Value *Old, Value *V, in insertVector() argument
1784 VectorType *VecTy = cast<VectorType>(Old->getType()); in insertVector()
1790 V = IRB.CreateInsertElement(Old, V, IRB.getInt32(BeginIndex), in insertVector()
1824 V = IRB.CreateSelect(ConstantVector::get(Mask), V, Old, Name + "blend"); in insertVector()
2108 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), in rewriteVectorizedStoreInst() local
[all …]
DScalarReplAggregates.cpp640 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in"); in ConvertUsesToScalar() local
641 Value *New = ConvertScalar_InsertValue(SI->getOperand(0), Old, Offset, in ConvertUsesToScalar()
648 if (Old->use_empty()) in ConvertUsesToScalar()
649 Old->eraseFromParent(); in ConvertUsesToScalar()
671 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in"); in ConvertUsesToScalar() local
674 Old, Offset, 0, Builder); in ConvertUsesToScalar()
679 if (Old->use_empty()) in ConvertUsesToScalar()
680 Old->eraseFromParent(); in ConvertUsesToScalar()
896 ConvertScalar_InsertValue(Value *SV, Value *Old, in ConvertScalar_InsertValue() argument
901 Type *AllocaType = Old->getType(); in ConvertScalar_InsertValue()
[all …]

12345678