Home
last modified time | relevance | path

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

1234567

/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.cpp119 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { in CheckEquivalentExceptionSpec() argument
130 Old->getType()->getAs<FunctionProtoType>(), in CheckEquivalentExceptionSpec()
131 Old->getLocation(), in CheckEquivalentExceptionSpec()
157 (Old->getLocation().isInvalid() || in CheckEquivalentExceptionSpec()
158 Context.getSourceManager().isInSystemHeader(Old->getLocation())) && in CheckEquivalentExceptionSpec()
159 Old->isExternC()) { in CheckEquivalentExceptionSpec()
172 = Old->getType()->getAs<FunctionProtoType>(); in CheckEquivalentExceptionSpec()
269 if (!Old->getLocation().isInvalid()) in CheckEquivalentExceptionSpec()
270 Diag(Old->getLocation(), diag::note_previous_declaration); in CheckEquivalentExceptionSpec()
276 Diag(Old->getLocation(), diag::note_previous_declaration); in CheckEquivalentExceptionSpec()
[all …]
DIdentifierResolver.cpp83 IdentifierResolver::IdDeclInfo::ReplaceDecl(NamedDecl *Old, NamedDecl *New) { in ReplaceDecl() argument
85 if (Old == *(I-1)) { in ReplaceDecl()
235 bool IdentifierResolver::ReplaceDecl(NamedDecl *Old, NamedDecl *New) { in ReplaceDecl() argument
236 assert(Old->getDeclName() == New->getDeclName() && in ReplaceDecl()
239 DeclarationName Name = Old->getDeclName(); in ReplaceDecl()
249 if (Ptr == Old) { in ReplaceDecl()
256 return toIdDeclInfo(Ptr)->ReplaceDecl(Old, New); in ReplaceDecl()
DSemaDecl.cpp1436 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { in isIncompatibleTypedef() argument
1438 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old)) in isIncompatibleTypedef()
1441 OldType = Context.getTypeDeclType(Old); in isIncompatibleTypedef()
1446 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
1449 if (Old->getLocation().isValid()) in isIncompatibleTypedef()
1450 Diag(Old->getLocation(), diag::note_previous_definition); in isIncompatibleTypedef()
1459 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
1462 if (Old->getLocation().isValid()) in isIncompatibleTypedef()
1463 Diag(Old->getLocation(), diag::note_previous_definition); in isIncompatibleTypedef()
1512 TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>(); in MergeTypedefNameDecl() local
[all …]
/external/llvm/lib/Target/MSP430/
DMSP430RegisterInfo.cpp113 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
114 uint64_t Amount = Old->getOperand(0).getImm(); in eliminateCallFramePseudoInstr()
122 if (Old->getOpcode() == TII.getCallFrameSetupOpcode()) { in eliminateCallFramePseudoInstr()
123 New = BuildMI(MF, Old->getDebugLoc(), in eliminateCallFramePseudoInstr()
127 assert(Old->getOpcode() == TII.getCallFrameDestroyOpcode()); in eliminateCallFramePseudoInstr()
129 uint64_t CalleeAmt = Old->getOperand(1).getImm(); in eliminateCallFramePseudoInstr()
132 New = BuildMI(MF, Old->getDebugLoc(), in eliminateCallFramePseudoInstr()
149 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
151 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri), in eliminateCallFramePseudoInstr()
/external/llvm/lib/Target/MBlaze/
DMBlazeRegisterInfo.cpp96 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
97 int Amount = Old->getOperand(0).getImm() + 4; in eliminateCallFramePseudoInstr()
106 if (Old->getOpcode() == MBlaze::ADJCALLSTACKDOWN) { in eliminateCallFramePseudoInstr()
107 New = BuildMI(MF,Old->getDebugLoc(),TII.get(MBlaze::ADDIK),MBlaze::R1) in eliminateCallFramePseudoInstr()
110 assert(Old->getOpcode() == MBlaze::ADJCALLSTACKUP); in eliminateCallFramePseudoInstr()
111 New = BuildMI(MF,Old->getDebugLoc(),TII.get(MBlaze::ADDIK),MBlaze::R1) in eliminateCallFramePseudoInstr()
/external/llvm/unittests/VMCore/
DValueMapTest.cpp188 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { in onRAUW()
192 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/VMCore/
DValue.cpp628 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) { in ValueIsRAUWd() argument
629 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present"); in ValueIsRAUWd()
630 assert(Old != New && "Changing value into itself!"); in ValueIsRAUWd()
634 LLVMContextImpl *pImpl = Old->getContext().pImpl; in ValueIsRAUWd()
635 ValueHandleBase *Entry = pImpl->ValueHandles[Old]; in ValueIsRAUWd()
673 if (Old->HasValueHandle) in ValueIsRAUWd()
674 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next) in ValueIsRAUWd()
678 dbgs() << "After RAUW from " << *Old->getType() << " %" in ValueIsRAUWd()
679 << Old->getName() << " to " << *New->getType() << " %" in ValueIsRAUWd()
/external/llvm/lib/Target/XCore/
DXCoreRegisterInfo.cpp109 MachineInstr *Old = I; in eliminateCallFramePseudoInstr() local
110 uint64_t Amount = Old->getOperand(0).getImm(); in eliminateCallFramePseudoInstr()
132 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) { in eliminateCallFramePseudoInstr()
134 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode)) in eliminateCallFramePseudoInstr()
137 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP); in eliminateCallFramePseudoInstr()
139 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP) in eliminateCallFramePseudoInstr()
/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.txt51 ang{"Old English"}
192 fro{"Old French"}
208 goh{"Old High German"}
389 non{"Old Norse"}
417 peo{"Old Persian"}
424 pro{"Old Provençal"}
465 sga{"Old Irish"}
614 Cyrs{"Old Church Slavonic Cyrillic"}
638 Hung{"Old Hungarian"}
640 Ital{"Old Italic"}
[all …]
/external/llvm/lib/Transforms/InstCombine/
DInstCombine.h235 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) { in InsertNewInstBefore() argument
238 BasicBlock *BB = Old.getParent(); in InsertNewInstBefore()
239 BB->getInstList().insert(&Old, New); // Insert inst in InsertNewInstBefore()
247 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) { in InsertNewInstWith() argument
248 New->setDebugLoc(Old.getDebugLoc()); in InsertNewInstWith()
249 return InsertNewInstBefore(New, Old); in InsertNewInstWith()
/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/ppp/pppd/plugins/radius/etc/
Ddictionary.compat12 ATTRIBUTE Old-Password 17 string
40 # For compatibility with ESVA RADIUS, Old Cistron RADIUS
/external/llvm/lib/Target/PowerPC/
DPPCJITInfo.cpp467 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { in replaceMachineCodeForFunction() argument
468 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit); in replaceMachineCodeForFunction()
469 sys::Memory::InvalidateInstructionCache(Old, 7*4); in replaceMachineCodeForFunction()
/external/llvm/lib/Transforms/Utils/
DValueMapper.cpp191 MDNode *Old = MI->second; in RemapInstruction() local
192 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper); in RemapInstruction()
193 if (New != Old) in RemapInstruction()
DBasicBlockUtils.cpp287 BasicBlock *llvm::SplitBlock(BasicBlock *Old, Instruction *SplitPt, Pass *P) { in SplitBlock() argument
291 BasicBlock *New = Old->splitBasicBlock(SplitIt, Old->getName()+".split"); in SplitBlock()
296 if (Loop *L = LI->getLoopFor(Old)) in SplitBlock()
301 if (DomTreeNode *OldNode = DT->getNode(Old)) { in SplitBlock()
307 DomTreeNode *NewNode = DT->addNewBlock(New,Old); in SplitBlock()
/external/clang/include/clang/Sema/
DIdentifierResolver.h57 bool ReplaceDecl(NamedDecl *Old, NamedDecl *New);
175 bool ReplaceDecl(NamedDecl *Old, NamedDecl *New);
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp560 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in"); in ConvertUsesToScalar() local
561 Value *New = ConvertScalar_InsertValue(SI->getOperand(0), Old, Offset, in ConvertUsesToScalar()
568 if (Old->use_empty()) in ConvertUsesToScalar()
569 Old->eraseFromParent(); in ConvertUsesToScalar()
590 Instruction *Old = Builder.CreateLoad(NewAI, NewAI->getName()+".in"); in ConvertUsesToScalar() local
593 Old, Offset, Builder); in ConvertUsesToScalar()
598 if (Old->use_empty()) in ConvertUsesToScalar()
599 Old->eraseFromParent(); in ConvertUsesToScalar()
795 ConvertScalar_InsertValue(Value *SV, Value *Old, in ConvertScalar_InsertValue() argument
799 Type *AllocaType = Old->getType(); in ConvertScalar_InsertValue()
[all …]
/external/llvm/lib/CodeGen/
DMachineFunction.cpp583 bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old, in ReplaceMBBInJumpTables() argument
585 assert(Old != New && "Not making a change?"); in ReplaceMBBInJumpTables()
588 ReplaceMBBInJumpTable(i, Old, New); in ReplaceMBBInJumpTables()
595 MachineBasicBlock *Old, in ReplaceMBBInJumpTable() argument
597 assert(Old != New && "Not making a change?"); in ReplaceMBBInJumpTable()
601 if (JTE.MBBs[j] == Old) { in ReplaceMBBInJumpTable()

1234567