/external/llvm/lib/IR/ |
BasicBlock.cpp | 105 /// insert it into the function that MovePos lives in, right before MovePos. 106 void BasicBlock::moveBefore(BasicBlock *MovePos) { 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) { 114 Function::iterator I = MovePos; 115 MovePos->getParent()->getBasicBlockList().splice(++I [all...] |
Instruction.cpp | 89 /// insert it into the basic block that MovePos lives in, right before 90 /// MovePos. 91 void Instruction::moveBefore(Instruction *MovePos) { 92 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
|
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 | 74 /// insert it into the basic block that MovePos lives in, right before 75 /// MovePos. 76 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/chromium_org/third_party/lzma_sdk/ |
LzmaEnc.c | 803 static void MovePos(CLzmaEnc *p, UInt32 num) 807 printf("\n MovePos %d", num); 987 MovePos(p, lenRes - 1); 995 MovePos(p, mainLen - 1); [all...] |
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
LzmaEnc.c | 804 static void MovePos(CLzmaEnc *p, UInt32 num) 808 printf("\n MovePos %d", num); 988 MovePos(p, lenRes - 1); 996 MovePos(p, mainLen - 1); [all...] |
/external/lzma/C/ |
LzmaEnc.c | 803 static void MovePos(CLzmaEnc *p, UInt32 num)
807 printf("\n MovePos %d", num);
987 MovePos(p, lenRes - 1);
995 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/llvm/include/llvm-c/ |
Core.h | [all...] |
/external/lzma/CS/7zip/Compress/LZMA/ |
LzmaEncoder.cs | 446 void MovePos(UInt32 num)
584 MovePos(lenRes - 1);
591 MovePos(lenMain - 1);
[all...] |