/external/llvm/lib/IR/ |
BasicBlock.cpp | 102 /// insert it into the function that MovePos lives in, right before MovePos. 103 void BasicBlock::moveBefore(BasicBlock *MovePos) { 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) { 111 MovePos->getParent()->getBasicBlockList().splice( 112 ++MovePos->getIterator(), getParent()->getBasicBlockList() [all...] |
Instruction.cpp | 93 /// insert it into the basic block that MovePos lives in, right before 94 /// MovePos. 95 void Instruction::moveBefore(Instruction *MovePos) { 96 MovePos->getParent()->getInstList().splice( 97 MovePos->getIterator(), getParent()->getInstList(), getIterator());
|
Core.cpp | [all...] |
/external/lzma/Java/SevenZip/Compression/LZ/ |
BinTree.java | 63 public void MovePos() throws IOException
67 super.MovePos();
128 MovePos();
248 MovePos();
264 MovePos();
339 MovePos();
|
InWindow.java | 27 // we need one additional byte, since MovePos moves on 1 byte.
93 public void MovePos() throws IOException
|
/external/llvm/include/llvm/IR/ |
BasicBlock.h | 165 /// into the function that \p MovePos lives in, right before \p MovePos. 166 void moveBefore(BasicBlock *MovePos); 169 /// right after \p MovePos in the function \p MovePos lives in. 170 void moveAfter(BasicBlock *MovePos);
|
Instruction.h | 96 /// insert it into the basic block that MovePos lives in, right before 97 /// MovePos. 98 void moveBefore(Instruction *MovePos);
|
/external/lzma/CS/7zip/Compress/LZ/ |
LzBinTree.cs | 63 public new void MovePos()
67 base.MovePos();
128 MovePos();
248 MovePos();
264 MovePos();
339 MovePos();
|
LzInWindow.cs | 27 // we need one additional byte, since MovePos moves on 1 byte.
93 public void MovePos()
|
/external/lzma/C/ |
LzmaEnc.c | 813 static void MovePos(CLzmaEnc *p, UInt32 num)
817 printf("\n MovePos %d", num);
1000 MovePos(p, lenRes - 1);
1008 MovePos(p, mainLen - 1);
[all...] |
/external/lzma/Java/SevenZip/Compression/LZMA/ |
Encoder.java | 446 void MovePos(int num) throws java.io.IOException
584 MovePos(lenRes - 1);
591 MovePos(lenMain - 1);
[all...] |
/external/lzma/CS/7zip/Compress/LZMA/ |
LzmaEncoder.cs | 446 void MovePos(UInt32 num)
584 MovePos(lenRes - 1);
591 MovePos(lenMain - 1);
[all...] |
/external/llvm/include/llvm-c/ |
Core.h | [all...] |