/external/swiftshader/third_party/LLVM/lib/VMCore/ |
H A D | BasicBlock.cpp | 105 /// 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 D | Instruction.cpp | 88 /// 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 D | Core.cpp | 1535 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 D | BasicBlock.cpp | 102 /// 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 D | Instruction.cpp | 93 /// 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 D | Core.cpp | 2084 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 D | LzBinTree.cs | 63 public new void MovePos()
method in class:SevenZip.Compression.LZ.BinTree 67 base.MovePos();
128 MovePos();
248 MovePos();
264 MovePos();
339 MovePos();
|
H A D | LzInWindow.cs | 27 // 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 D | BinTree.java | 63 public void MovePos() throws IOException
method in class:BinTree 67 super.MovePos();
128 MovePos();
248 MovePos();
264 MovePos();
339 MovePos();
|
H A D | InWindow.java | 27 // 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 D | BasicBlock.h | 167 /// 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 D | Instruction.h | 73 /// 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 D | BasicBlock.h | 173 /// 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 D | Instruction.h | 94 /// 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 D | BasicBlock.h | 174 /// 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 D | Instruction.h | 98 /// the basic block that MovePos lives in, right before MovePos. 99 void moveBefore(Instruction *MovePos);
|
/external/lzma/C/ |
H A D | LzmaEnc.c | 853 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 D | LzmaEncoder.cs | 446 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 D | Encoder.java | 446 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 D | Core.h | 786 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos); 787 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
|
/external/llvm/include/llvm-c/ |
H A D | Core.h | 2411 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos); 2418 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
|