Home
last modified time | relevance | path

Searched refs:MovePos (Results 1 – 25 of 32) sorted by relevance

12

/external/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java63 public void MovePos() throws IOException in MovePos() method in BinTree
67 super.MovePos(); in MovePos()
128 MovePos(); in GetMatches()
248 MovePos(); in GetMatches()
264 MovePos(); in Skip()
339 MovePos(); in Skip()
DInWindow.java93 public void MovePos() throws IOException in MovePos() method in InWindow
/external/llvm/lib/IR/
DBasicBlock.cpp103 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument
104 MovePos->getParent()->getBasicBlockList().splice( in moveBefore()
105 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore()
110 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument
111 MovePos->getParent()->getBasicBlockList().splice( in moveAfter()
112 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
DInstruction.cpp94 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument
95 MovePos->getParent()->getInstList().splice( in moveBefore()
96 MovePos->getIterator(), getParent()->getInstList(), getIterator()); in moveBefore()
DCore.cpp2084 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockBefore() argument
2085 unwrap(BB)->moveBefore(unwrap(MovePos)); in LLVMMoveBasicBlockBefore()
2088 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockAfter() argument
2089 unwrap(BB)->moveAfter(unwrap(MovePos)); in LLVMMoveBasicBlockAfter()
/external/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs63 public new void MovePos() in MovePos() method in SevenZip.Compression.LZ.BinTree
67 base.MovePos(); in MovePos()
128 MovePos(); in GetMatches()
248 MovePos(); in GetMatches()
264 MovePos(); in Skip()
339 MovePos(); in Skip()
DLzInWindow.cs93 public void MovePos() in MovePos() method in SevenZip.Compression.LZ.InWindow
/external/llvm-project/llvm/lib/IR/
DBasicBlock.cpp133 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument
134 MovePos->getParent()->getBasicBlockList().splice( in moveBefore()
135 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore()
138 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument
139 MovePos->getParent()->getBasicBlockList().splice( in moveAfter()
140 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
DInstruction.cpp96 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument
97 moveBefore(*MovePos->getParent(), MovePos->getIterator()); in moveBefore()
100 void Instruction::moveAfter(Instruction *MovePos) { in moveAfter() argument
101 moveBefore(*MovePos->getParent(), ++MovePos->getIterator()); in moveAfter()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DBasicBlock.cpp127 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument
128 MovePos->getParent()->getBasicBlockList().splice( in moveBefore()
129 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore()
134 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument
135 MovePos->getParent()->getBasicBlockList().splice( in moveAfter()
136 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
DInstruction.cpp86 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument
87 moveBefore(*MovePos->getParent(), MovePos->getIterator()); in moveBefore()
90 void Instruction::moveAfter(Instruction *MovePos) { in moveAfter() argument
91 moveBefore(*MovePos->getParent(), ++MovePos->getIterator()); in moveAfter()
/external/llvm-project/llvm/lib/Transforms/Utils/
DCodeMoverUtils.cpp408 Instruction *MovePos = ToBB.getFirstNonPHIOrDbg(); in moveInstructionsToTheBeginning() local
413 if (isSafeToMoveBefore(I, *MovePos, DT, &PDT, &DI)) in moveInstructionsToTheBeginning()
414 I.moveBefore(MovePos); in moveInstructionsToTheBeginning()
422 Instruction *MovePos = ToBB.getTerminator(); in moveInstructionsToTheEnd() local
425 if (isSafeToMoveBefore(I, *MovePos, DT, &PDT, &DI)) in moveInstructionsToTheEnd()
426 I.moveBefore(MovePos); in moveInstructionsToTheEnd()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCodeMoverUtils.cpp181 Instruction *MovePos = ToBB.getFirstNonPHIOrDbg(); in moveInstsBottomUp() local
186 if (isSafeToMoveBefore(I, *MovePos, DT, PDT, DI)) in moveInstsBottomUp()
187 I.moveBefore(MovePos); in moveInstsBottomUp()
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DBasicBlock.h175 void moveBefore(BasicBlock *MovePos);
179 void moveAfter(BasicBlock *MovePos);
DInstruction.h99 void moveBefore(Instruction *MovePos);
/external/llvm/include/llvm/IR/
DBasicBlock.h174 void moveBefore(BasicBlock *MovePos);
178 void moveAfter(BasicBlock *MovePos);
DInstruction.h95 void moveBefore(Instruction *MovePos);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DBasicBlock.h210 void moveBefore(BasicBlock *MovePos);
214 void moveAfter(BasicBlock *MovePos);
DInstruction.h109 void moveBefore(Instruction *MovePos);
118 void moveAfter(Instruction *MovePos);
/external/llvm-project/llvm/include/llvm/IR/
DBasicBlock.h227 void moveBefore(BasicBlock *MovePos);
231 void moveAfter(BasicBlock *MovePos);
DInstruction.h137 void moveBefore(Instruction *MovePos);
146 void moveAfter(Instruction *MovePos);
/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java446 void MovePos(int num) throws java.io.IOException in MovePos() method in Encoder
584 MovePos(lenRes - 1); in GetOptimum()
591 MovePos(lenMain - 1); in GetOptimum()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs446 void MovePos(UInt32 num) in MovePos() method in SevenZip.Compression.LZMA.Encoder
584 MovePos(lenRes - 1); in GetOptimum()
591 MovePos(lenMain - 1); in GetOptimum()
/external/llvm-project/llvm/lib/CodeGen/
DMachineInstr.cpp153 void MachineInstr::moveBefore(MachineInstr *MovePos) { in moveBefore() argument
154 MovePos->getParent()->splice(MovePos, getParent(), getIterator()); in moveBefore()
/external/llvm/include/llvm-c/
DCore.h2411 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2418 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);

12