Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/LLVM/lib/VMCore/
DBasicBlock.cpp106 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument
107 MovePos->getParent()->getBasicBlockList().splice(MovePos, in moveBefore()
113 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument
114 Function::iterator I = MovePos; in moveAfter()
115 MovePos->getParent()->getBasicBlockList().splice(++I, in moveAfter()
DInstruction.cpp90 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument
91 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(), in moveBefore()
DCore.cpp1535 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockBefore() argument
1536 unwrap(BB)->moveBefore(unwrap(MovePos)); in LLVMMoveBasicBlockBefore()
1539 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockAfter() argument
1540 unwrap(BB)->moveAfter(unwrap(MovePos)); in LLVMMoveBasicBlockAfter()
/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/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/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/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DBasicBlock.cpp121 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument
122 MovePos->getParent()->getBasicBlockList().splice( in moveBefore()
123 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore()
128 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument
129 MovePos->getParent()->getBasicBlockList().splice( in moveAfter()
130 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
DInstruction.cpp87 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument
88 moveBefore(*MovePos->getParent(), MovePos->getIterator()); in moveBefore()
91 void Instruction::moveAfter(Instruction *MovePos) { in moveAfter() argument
92 moveBefore(*MovePos->getParent(), ++MovePos->getIterator()); in moveAfter()
/external/swiftshader/third_party/LLVM/include/llvm/
DBasicBlock.h168 void moveBefore(BasicBlock *MovePos);
172 void moveAfter(BasicBlock *MovePos);
DInstruction.h75 void moveBefore(Instruction *MovePos);
/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-7.0/llvm/include/llvm/IR/
DBasicBlock.h207 void moveBefore(BasicBlock *MovePos);
211 void moveAfter(BasicBlock *MovePos);
DInstruction.h110 void moveBefore(Instruction *MovePos);
119 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/swiftshader/third_party/LLVM/include/llvm-c/
DCore.h786 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
787 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
/external/llvm/include/llvm-c/
DCore.h2411 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2418 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
DCore.h2637 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2644 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);

12