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

/external/llvm/lib/IR/
H A DBasicBlock.cpp109 /// insert it into the function that MovePos lives in, right before MovePos.
110 void BasicBlock::moveBefore(BasicBlock *MovePos) { argument
111 MovePos->getParent()->getBasicBlockList().splice(MovePos,
116 /// insert it into the function that MovePos lives in, right after MovePos.
117 void BasicBlock::moveAfter(BasicBlock *MovePos) { argument
118 Function::iterator I = MovePos;
119 MovePos
[all...]
H A DInstruction.cpp93 /// insert it into the basic block that MovePos lives in, right before
94 /// MovePos.
95 void Instruction::moveBefore(Instruction *MovePos) { argument
96 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
H A DCore.cpp1803 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1804 unwrap(BB)->moveBefore(unwrap(MovePos));
1807 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1808 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/llvm/include/llvm/IR/
H A DBasicBlock.h169 /// into the function that \p MovePos lives in, right before \p MovePos.
170 void moveBefore(BasicBlock *MovePos);
173 /// right after \p MovePos in the function \p MovePos lives in.
174 void moveAfter(BasicBlock *MovePos);
H A DInstruction.h77 /// insert it into the basic block that MovePos lives in, right before
78 /// MovePos.
79 void moveBefore(Instruction *MovePos);
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaEnc.c803 static void MovePos(CLzmaEnc *p, UInt32 num) function
807 printf("\n MovePos %d", num);
987 MovePos(p, lenRes - 1);
995 MovePos(p, mainLen - 1);
1522 MovePos(p, len - 1);
1536 MovePos(p, mainLen - 1);
1562 MovePos(p, repLen - 1);
1593 MovePos(p, mainLen - 2);
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaEnc.c804 static void MovePos(CLzmaEnc *p, UInt32 num) function
808 printf("\n MovePos %d", num);
988 MovePos(p, lenRes - 1);
996 MovePos(p, mainLen - 1);
1523 MovePos(p, len - 1);
1537 MovePos(p, mainLen - 1);
1563 MovePos(p, repLen - 1);
1594 MovePos(p, mainLen - 2);
/external/lzma/C/
H A DLzmaEnc.c803 static void MovePos(CLzmaEnc *p, UInt32 num) function
807 printf("\n MovePos %d", num);
987 MovePos(p, lenRes - 1);
995 MovePos(p, mainLen - 1);
1522 MovePos(p, len - 1);
1536 MovePos(p, mainLen - 1);
1562 MovePos(p, repLen - 1);
1593 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/llvm/include/llvm-c/
H A DCore.h2266 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2273 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);

Completed in 858 milliseconds