/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 63 public void MovePos() throws IOException in MovePos() method in BinTree 67 super.MovePos(); in MovePos() 128 MovePos(); in GetMatches() 248 MovePos(); in GetMatches() 264 MovePos(); in Skip() 339 MovePos(); in Skip()
|
D | InWindow.java | 93 public void MovePos() throws IOException in MovePos() method in InWindow
|
/external/llvm/lib/IR/ |
D | BasicBlock.cpp | 103 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument 104 MovePos->getParent()->getBasicBlockList().splice( in moveBefore() 105 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore() 110 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument 111 MovePos->getParent()->getBasicBlockList().splice( in moveAfter() 112 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
|
D | Instruction.cpp | 94 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument 95 MovePos->getParent()->getInstList().splice( in moveBefore() 96 MovePos->getIterator(), getParent()->getInstList(), getIterator()); in moveBefore()
|
D | Core.cpp | 2084 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockBefore() argument 2085 unwrap(BB)->moveBefore(unwrap(MovePos)); in LLVMMoveBasicBlockBefore() 2088 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockAfter() argument 2089 unwrap(BB)->moveAfter(unwrap(MovePos)); in LLVMMoveBasicBlockAfter()
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 63 public new void MovePos() in MovePos() method in SevenZip.Compression.LZ.BinTree 67 base.MovePos(); in MovePos() 128 MovePos(); in GetMatches() 248 MovePos(); in GetMatches() 264 MovePos(); in Skip() 339 MovePos(); in Skip()
|
D | LzInWindow.cs | 93 public void MovePos() in MovePos() method in SevenZip.Compression.LZ.InWindow
|
/external/llvm-project/llvm/lib/IR/ |
D | BasicBlock.cpp | 133 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument 134 MovePos->getParent()->getBasicBlockList().splice( in moveBefore() 135 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore() 138 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument 139 MovePos->getParent()->getBasicBlockList().splice( in moveAfter() 140 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
|
D | Instruction.cpp | 96 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument 97 moveBefore(*MovePos->getParent(), MovePos->getIterator()); in moveBefore() 100 void Instruction::moveAfter(Instruction *MovePos) { in moveAfter() argument 101 moveBefore(*MovePos->getParent(), ++MovePos->getIterator()); in moveAfter()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | BasicBlock.cpp | 127 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument 128 MovePos->getParent()->getBasicBlockList().splice( in moveBefore() 129 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore() 134 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument 135 MovePos->getParent()->getBasicBlockList().splice( in moveAfter() 136 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
|
D | Instruction.cpp | 86 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument 87 moveBefore(*MovePos->getParent(), MovePos->getIterator()); in moveBefore() 90 void Instruction::moveAfter(Instruction *MovePos) { in moveAfter() argument 91 moveBefore(*MovePos->getParent(), ++MovePos->getIterator()); in moveAfter()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | CodeMoverUtils.cpp | 408 Instruction *MovePos = ToBB.getFirstNonPHIOrDbg(); in moveInstructionsToTheBeginning() local 413 if (isSafeToMoveBefore(I, *MovePos, DT, &PDT, &DI)) in moveInstructionsToTheBeginning() 414 I.moveBefore(MovePos); in moveInstructionsToTheBeginning() 422 Instruction *MovePos = ToBB.getTerminator(); in moveInstructionsToTheEnd() local 425 if (isSafeToMoveBefore(I, *MovePos, DT, &PDT, &DI)) in moveInstructionsToTheEnd() 426 I.moveBefore(MovePos); in moveInstructionsToTheEnd()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | CodeMoverUtils.cpp | 181 Instruction *MovePos = ToBB.getFirstNonPHIOrDbg(); in moveInstsBottomUp() local 186 if (isSafeToMoveBefore(I, *MovePos, DT, PDT, DI)) in moveInstsBottomUp() 187 I.moveBefore(MovePos); in moveInstsBottomUp()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | BasicBlock.h | 175 void moveBefore(BasicBlock *MovePos); 179 void moveAfter(BasicBlock *MovePos);
|
D | Instruction.h | 99 void moveBefore(Instruction *MovePos);
|
/external/llvm/include/llvm/IR/ |
D | BasicBlock.h | 174 void moveBefore(BasicBlock *MovePos); 178 void moveAfter(BasicBlock *MovePos);
|
D | Instruction.h | 95 void moveBefore(Instruction *MovePos);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | BasicBlock.h | 210 void moveBefore(BasicBlock *MovePos); 214 void moveAfter(BasicBlock *MovePos);
|
D | Instruction.h | 109 void moveBefore(Instruction *MovePos); 118 void moveAfter(Instruction *MovePos);
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | BasicBlock.h | 227 void moveBefore(BasicBlock *MovePos); 231 void moveAfter(BasicBlock *MovePos);
|
D | Instruction.h | 137 void moveBefore(Instruction *MovePos); 146 void moveAfter(Instruction *MovePos);
|
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Encoder.java | 446 void MovePos(int num) throws java.io.IOException in MovePos() method in Encoder 584 MovePos(lenRes - 1); in GetOptimum() 591 MovePos(lenMain - 1); in GetOptimum()
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaEncoder.cs | 446 void MovePos(UInt32 num) in MovePos() method in SevenZip.Compression.LZMA.Encoder 584 MovePos(lenRes - 1); in GetOptimum() 591 MovePos(lenMain - 1); in GetOptimum()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 153 void MachineInstr::moveBefore(MachineInstr *MovePos) { in moveBefore() argument 154 MovePos->getParent()->splice(MovePos, getParent(), getIterator()); in moveBefore()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 2411 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos); 2418 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
|