Searched defs:Next (Results 126 - 150 of 315) sorted by last modified time

1234567891011>>

/external/llvm/lib/IR/
H A DVerifier.cpp1691 Instruction *Next = CI.getNextNode(); local
1694 if (BitCastInst *BI = dyn_cast_or_null<BitCastInst>(Next)) {
1698 Next = BI->getNextNode();
1702 ReturnInst *Ret = dyn_cast_or_null<ReturnInst>(Next);
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp1367 // Next, check the extension directive map to see if any extension has
1772 char Next = Body[Pos + 1]; local
1773 if (Next == '$' || Next == 'n' ||
1774 isdigit(static_cast<unsigned char>(Next)))
3413 char Next = Body[Pos + 1]; local
3414 if (Next == '$' || Next == 'n' ||
3415 isdigit(static_cast<unsigned char>(Next)))
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp116 unsigned Next = SD->getLayoutOrder() + 1; local
117 if (Next >= Layout.getSectionOrder().size())
120 const MCSectionData &NextSD = *Layout.getSectionOrder()[Next];
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp1287 // Next look for the form Foo.framework/Versions/A/Foo
1766 MachOObjectFile::LoadCommandInfo Next; local
1767 Next.Ptr = L.Ptr + L.C.cmdsize;
1768 Next.C = getStruct<MachO::load_command>(this, Next.Ptr);
1769 return Next;
/external/llvm/lib/Support/
H A DFoldingSet.cpp321 void *Next = *Bucket; local
326 if (!Next)
327 Next = reinterpret_cast<void*>(reinterpret_cast<intptr_t>(Bucket)|1);
330 N->SetNextInBucket(Next);
/external/llvm/lib/Target/AArch64/
H A DAArch64CleanupLocalDynamicTLSPass.cpp124 MachineInstr *Next = I->getNextNode(); local
125 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(),
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp1929 size_t Start = 0, Next = Name.find('.'); local
1930 StringRef Head = Name.slice(Start, Next);
1934 if (Next != StringRef::npos) {
1935 Kind = Name.slice(Next, StringRef::npos);
3157 size_t Start = 0, Next = Name.find('.'); local
3158 StringRef Head = Name.slice(Start, Next);
3173 if (Head == "b" && Next != StringRef::npos) {
3174 Start = Next;
3175 Next = Name.find('.', Start + 1);
3176 Head = Name.slice(Start + 1, Next);
[all...]
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp3939 size_t Start = 0, Next = Mask.find('_'); local
3941 std::string SpecReg = Mask.slice(Start, Next).lower();
3942 if (Next != StringRef::npos)
3943 Flags = Mask.slice(Next+1, Mask.size());
5021 // Next, determine if we have a carry setting bit. We explicitly ignore all
5326 size_t Start = 0, Next = Name.find('.'); local
5327 StringRef Mnemonic = Name.slice(Start, Next);
5373 // Next, add the CCOut and ConditionCode operands, if needed.
5421 while (Next != StringRef::npos) {
5422 Start = Next;
[all...]
/external/llvm/lib/Target/R600/
H A DAMDILCFGStructurizer.cpp590 MachineBasicBlock::succ_iterator Next = It; local
591 ++Next;
592 return (*It == TrueBranch) ? *Next : *It;
H A DSIFixSGPRLiveRanges.cpp102 LiveRange::Segment &Next = LI.segments[i + 1]; local
103 Seg.end = Next.start;
H A DSILowerControlFlow.cpp456 MachineBasicBlock::iterator I, Next; local
457 for (I = MBB.begin(); I != MBB.end(); I = Next) {
458 Next = std::next(I);
H A DSILowerI1Copies.cpp82 MachineBasicBlock::iterator I, Next; local
83 for (I = MBB.begin(); I != MBB.end(); I = Next) {
84 Next = std::next(I);
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp5557 MachineInstr *Next = I->getNextNode(); local
5558 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(),
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp742 Instruction *Next = Inst->getNextNode(); local
750 Inst = Next;
1363 Instruction *Next = nullptr; local
1367 Next = II->getNormalDest()->begin();
1371 Next = NewBB->begin();
1374 Next = CS->getNextNode();
1378 IRBuilder<> NextIRB(Next);
1428 if (Next) {
1430 ExtractValueInst::Create(NewCS.getInstruction(), 0, "", Next);
1433 ExtractValueInst::Create(NewCS.getInstruction(), 1, "", Next);
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp532 if (!NextInst) // Next instruction deleted.
684 Instruction *Next = std::next(BasicBlock::iterator(Dependency)); local
696 Dep = MD->getPointerDependencyFrom(Loc, false, Next, BB);
H A DGVN.cpp602 LeaderTableEntry *Next; member in struct:__anon26281::GVN::LeaderTableEntry
647 Node->Next = Curr.Next;
648 Curr.Next = Node;
659 Curr = Curr->Next;
663 Prev->Next = Curr->Next;
665 if (!Curr->Next) {
669 LeaderTableEntry* Next = Curr->Next; local
2029 LeaderTableEntry* Next = Vals.Next; local
[all...]
H A DLoopInstSimplify.cpp84 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
123 Next->insert(cast<Instruction>(U));
182 std::swap(ToSimplify, Next);
183 Next->clear();
H A DStructurizeCFG.cpp737 BasicBlock *Next = needPostfix(Flow, ExitUseAllowed); local
740 Conditions.push_back(BranchInst::Create(Entry, Next, BoolUndef, Flow));
750 changeExit(PrevNode, Next, false);
751 setPrevNode(Next);
790 BasicBlock *Next = needPostfix(LoopEnd, ExitUseAllowed); local
791 LoopConds.push_back(BranchInst::Create(Next, LoopStart,
794 setPrevNode(Next);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp55 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; variable
74 Next->insert(cast<Instruction>(U));
92 std::swap(ToSimplify, Next);
93 Next->clear();
/external/lldb/tools/lldb-perf/lib/
H A DXcode.cpp125 Xcode::Next (SBThread thread) function in class:Xcode
/external/libvpx/libvpx/test/
H A Ddecode_test_driver.h29 const vpx_image_t *Next() { function in class:libvpx_test::DxDataIterator
H A Dencode_test_driver.h55 const vpx_codec_cx_pkt_t *Next() { function in class:libvpx_test::CxDataIterator
H A Di420_video_source.h62 virtual void Next() { function in class:libvpx_test::I420VideoSource
H A Divf_video_source.h70 virtual void Next() { function in class:libvpx_test::IVFVideoSource
H A Dresize_test.cc108 virtual void Next() { function in class:__anon24791::ResizingVideoSource

Completed in 2066 milliseconds

1234567891011>>