Searched refs:MovePos (Results 1 - 21 of 21) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DBasicBlock.cpp105 /// insert it into the function that MovePos lives in, right before MovePos.
106 void BasicBlock::moveBefore(BasicBlock *MovePos) { argument
107 MovePos->getParent()->getBasicBlockList().splice(MovePos,
112 /// insert it into the function that MovePos lives in, right after MovePos.
113 void BasicBlock::moveAfter(BasicBlock *MovePos) { argument
114 Function::iterator I = MovePos;
115 MovePos
[all...]
H A DInstruction.cpp88 /// insert it into the basic block that MovePos lives in, right before
89 /// MovePos.
90 void Instruction::moveBefore(Instruction *MovePos) { argument
91 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
H A DCore.cpp1535 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1536 unwrap(BB)->moveBefore(unwrap(MovePos));
1539 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1540 unwrap(BB)->moveAfter(unwrap(MovePos));
/external/llvm/lib/IR/
H A DBasicBlock.cpp102 /// insert it into the function that MovePos lives in, right before MovePos.
103 void BasicBlock::moveBefore(BasicBlock *MovePos) { argument
104 MovePos->getParent()->getBasicBlockList().splice(
105 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator());
109 /// insert it into the function that MovePos lives in, right after MovePos.
110 void BasicBlock::moveAfter(BasicBlock *MovePos) { argument
111 MovePos->getParent()->getBasicBlockList().splice(
112 ++MovePos
[all...]
H A DInstruction.cpp93 /// basic block that MovePos lives in, right before MovePos.
94 void Instruction::moveBefore(Instruction *MovePos) { argument
95 MovePos->getParent()->getInstList().splice(
96 MovePos->getIterator(), getParent()->getInstList(), getIterator());
H A DCore.cpp2084 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
2085 unwrap(BB)->moveBefore(unwrap(MovePos));
2088 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
2089 unwrap(BB)->moveAfter(unwrap(MovePos));
/external/lzma/CS/7zip/Compress/LZ/
H A DLzBinTree.cs63 public new void MovePos() method in class:SevenZip.Compression.LZ.BinTree
67 base.MovePos();
128 MovePos();
248 MovePos();
264 MovePos();
339 MovePos();
H A DLzInWindow.cs27 // we need one additional byte, since MovePos moves on 1 byte.
93 public void MovePos() method in class:SevenZip.Compression.LZ.InWindow
/external/lzma/Java/SevenZip/Compression/LZ/
H A DBinTree.java63 public void MovePos() throws IOException method in class:BinTree
67 super.MovePos();
128 MovePos();
248 MovePos();
264 MovePos();
339 MovePos();
H A DInWindow.java27 // we need one additional byte, since MovePos moves on 1 byte.
93 public void MovePos() throws IOException method in class:InWindow
/external/swiftshader/third_party/LLVM/include/llvm/
H A DBasicBlock.h167 /// insert it into the function that MovePos lives in, right before MovePos.
168 void moveBefore(BasicBlock *MovePos);
171 /// insert it into the function that MovePos lives in, right after MovePos.
172 void moveAfter(BasicBlock *MovePos);
H A DInstruction.h73 /// insert it into the basic block that MovePos lives in, right before
74 /// MovePos.
75 void moveBefore(Instruction *MovePos);
/external/llvm/include/llvm/IR/
H A DBasicBlock.h173 /// into the function that \p MovePos lives in, right before \p MovePos.
174 void moveBefore(BasicBlock *MovePos);
177 /// right after \p MovePos in the function \p MovePos lives in.
178 void moveAfter(BasicBlock *MovePos);
H A DInstruction.h94 /// the basic block that MovePos lives in, right before MovePos.
95 void moveBefore(Instruction *MovePos);
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DBasicBlock.h174 /// into the function that \p MovePos lives in, right before \p MovePos.
175 void moveBefore(BasicBlock *MovePos);
178 /// right after \p MovePos in the function \p MovePos lives in.
179 void moveAfter(BasicBlock *MovePos);
H A DInstruction.h98 /// the basic block that MovePos lives in, right before MovePos.
99 void moveBefore(Instruction *MovePos);
/external/lzma/C/
H A DLzmaEnc.c853 static void MovePos(CLzmaEnc *p, UInt32 num) function
857 printf("\n MovePos %u", num);
1047 MovePos(p, lenRes - 1);
1055 MovePos(p, mainLen - 1);
1587 MovePos(p, len - 1);
1601 MovePos(p, mainLen - 1);
1627 MovePos(p, repLen - 1);
1658 MovePos(p, mainLen - 2);
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs446 void MovePos(UInt32 num) method in class:SevenZip.Compression.LZMA.Encoder
584 MovePos(lenRes - 1);
591 MovePos(lenMain - 1);
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java446 void MovePos(int num) throws java.io.IOException method in class:Encoder
584 MovePos(lenRes - 1);
591 MovePos(lenMain - 1);
/external/swiftshader/third_party/LLVM/include/llvm-c/
H A DCore.h786 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
787 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
/external/llvm/include/llvm-c/
H A DCore.h2411 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2418 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);

Completed in 390 milliseconds