Searched refs:Old (Results 76 - 100 of 157) sorted by relevance

1234567

/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.microsoft30 ATTRIBUTE MS-Old-ARAP-Password 19 string Microsoft
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp856 MachineInstr *Old = I; local
857 DebugLoc dl = Old->getDebugLoc();
858 unsigned Amount = Old->getOperand(0).getImm();
872 unsigned Opc = Old->getOpcode();
873 int PIdx = Old->findFirstPredOperandIdx();
875 ? ARMCC::AL : (ARMCC::CondCodes)Old->getOperand(PIdx).getImm();
878 unsigned PredReg = Old->getOperand(2).getReg();
882 unsigned PredReg = Old->getOperand(3).getReg();
H A DARMJITInfo.cpp29 void ARMJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { argument
H A DThumb1RegisterInfo.cpp316 MachineInstr *Old = I; local
317 DebugLoc dl = Old->getDebugLoc();
318 unsigned Amount = Old->getOperand(0).getImm();
327 unsigned Opc = Old->getOpcode();
/external/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp922 /// \p Old string, using the \p Buffer for storage.
924 /// \param Old The string to which we are appending. This parameter will be
928 /// \param New The string to append to \p Old.
932 static void AppendToString(StringRef &Old, StringRef New, argument
934 if (Old.empty()) {
935 Old = New;
940 Buffer.append(Old.begin(), Old.end());
942 Old = Buffer.str();
/external/llvm/lib/CodeGen/
H A DMachineFunction.cpp815 /// If Old is the target of any jump tables, update the jump tables to branch
817 bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old, argument
819 assert(Old != New && "Not making a change?");
822 ReplaceMBBInJumpTable(i, Old, New);
826 /// If Old is a target of the jump tables, update the jump table to branch to
829 MachineBasicBlock *Old,
831 assert(Old != New && "Not making a change?");
835 if (JTE.MBBs[j] == Old) {
828 ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old, MachineBasicBlock *New) argument
/external/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp492 MachineInstr *Old = I; local
493 uint64_t Amount = Old->getOperand(0).getImm();
515 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) {
517 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
520 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP);
522 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp251 BasicBlock *llvm::SplitBlock(BasicBlock *Old, Instruction *SplitPt, argument
256 BasicBlock *New = Old->splitBasicBlock(SplitIt, Old->getName()+".split");
261 if (Loop *L = LI->getLoopFor(Old))
265 // Old dominates New. New node dominates all other nodes dominated by Old.
266 if (DomTreeNode *OldNode = DT->getNode(Old)) {
269 DomTreeNode *NewNode = DT->addNewBlock(New, Old);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineBasicBlock.cpp383 void MachineBasicBlock::replaceSuccessor(MachineBasicBlock *Old, argument
386 succ_iterator SI = std::find(Successors.begin(), Successors.end(), Old);
671 /// 'Old', change the code and CFG so that it branches to 'New' instead.
672 void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old, argument
674 assert(Old != New && "Cannot replace self with self!");
681 // Scan the operands of this machine instruction, replacing any uses of Old
685 I->getOperand(i).getMBB() == Old)
690 replaceSuccessor(Old, New);
/external/vboot_reference/utility/
H A Deficompress.c121 IN NODE Old
612 NODE Old
622 Old - the node to split
633 t = mPrev[Old];
636 t = mNext[Old];
639 mParent[New] = mParent[Old];
642 MakeChild(New, mText[mMatchPos + mMatchLen], Old);
/external/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1213 AssertingVH<Instruction> Old; member in class:__anon14760::DeferredReplacement
1220 static DeferredReplacement createRAUW(Instruction *Old, Instruction *New) { argument
1221 assert(Old != New && Old && New &&
1225 D.Old = Old;
1232 D.Old = ToErase;
1236 static DeferredReplacement createDeoptimizeReplacement(Instruction *Old) { argument
1238 auto *F = cast<CallInst>(Old)->getCalledFunction();
1243 D.Old
[all...]
H A DScalarizer.cpp313 Instruction *Old = cast<Instruction>(V); local
314 CV[I]->takeName(Old);
315 Old->replaceAllUsesWith(CV[I]);
316 Old->eraseFromParent();
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DMergeFunctions.cpp571 /// Replace all direct calls of Old with calls of New. Will bitcast New if
573 void replaceDirectCallers(Function *Old, Function *New);
682 // Replace direct callers of Old with New.
683 void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) { argument
684 Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
685 for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end();
/external/clang/lib/AST/
H A DTypePrinter.cpp34 bool Old; member in class:__anon1494::IncludeStrongLifetimeRAII
38 : Policy(Policy), Old(Policy.SuppressStrongLifetime) {
44 Policy.SuppressStrongLifetime = Old;
50 bool Old; member in class:__anon1494::ParamPolicyRAII
54 : Policy(Policy), Old(Policy.SuppressSpecifiers) {
59 Policy.SuppressSpecifiers = Old;
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineBasicBlock.h277 void replaceSuccessor(MachineBasicBlock *Old, MachineBasicBlock *New);
384 /// 'Old', change the code and CFG so that it branches to 'New' instead.
385 void ReplaceUsesOfBlockWith(MachineBasicBlock *Old, MachineBasicBlock *New);
H A DFastISel.h139 void leaveLocalValueArea(SavePoint Old);
/external/clang/lib/CodeGen/
H A DEHScopeStack.h342 bool containsOnlyLifetimeMarkers(stable_iterator Old) const;
/external/compiler-rt/lib/profile/
H A DInstrProfData.inc284 * Do byte swap for this instance. \c Old is the original order before
287 void swapBytes(support::endianness Old, support::endianness New);
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h1013 ImmutableSet add(ImmutableSet Old, value_type_ref V) { argument
1014 TreeTy *NewT = F.add(Old.Root, V);
1025 ImmutableSet remove(ImmutableSet Old, value_type_ref V) { argument
1026 TreeTy *NewT = F.remove(Old.Root, V);
/external/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc284 * Do byte swap for this instance. \c Old is the original order before
287 void swapBytes(support::endianness Old, support::endianness New);
/external/llvm/lib/ProfileData/
H A DInstrProf.cpp544 // For writing/serializing, Old is the host endianness, and New is
545 // byte order intended on disk. For Reading/deserialization, Old
547 void ValueProfRecord::swapBytes(support::endianness Old, argument
550 if (Old == New)
553 if (getHostEndianness() != Old) {
565 if (getHostEndianness() == Old) {
/external/llvm/lib/Target/ARM/
H A DThumb1FrameLowering.cpp62 MachineInstr &Old = *I; local
63 DebugLoc dl = Old.getDebugLoc();
64 unsigned Amount = Old.getOperand(0).getImm();
73 unsigned Opc = Old.getOpcode();
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DImmutableSet.h981 ImmutableSet add(ImmutableSet Old, value_type_ref V) { argument
982 TreeTy *NewT = F.add(Old.Root, V);
993 ImmutableSet remove(ImmutableSet Old, value_type_ref V) { argument
994 TreeTy *NewT = F.remove(Old.Root, V);
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.h131 void NoteDeletion(SDNode *Old, SDNode *New) { argument
132 ExpungeNode(Old);
134 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i)
135 ReplacedValues[SDValue(Old, i)] = SDValue(New, i);
/external/clang/lib/Sema/
H A DTreeTransform.h101 TemplateArgument Old; member in class:clang::TreeTransform::ForgetPartiallySubstitutedPackRAII
105 Old = Self.ForgetPartiallySubstitutedPack();
109 Self.RememberPartiallySubstitutedPack(Old);
426 void transformAttrs(Decl *Old, Decl *New) { } argument
435 void transformedLocalDecl(Decl *Old, Decl *New) { argument
436 TransformedLocalDecls[Old] = New;
3826 TemplateArgumentLocInventIterator Old(*this);
3828 return Old;
5534 TemplateArgumentLocContainerIterator Old(*this);
5536 return Old;
9660 TransformUnresolvedLookupExpr( UnresolvedLookupExpr *Old) argument
10521 TransformUnresolvedMemberExpr(UnresolvedMemberExpr *Old) argument
[all...]

Completed in 4461 milliseconds

1234567