/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | BasicBlock.cpp | 106 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument 107 MovePos->getParent()->getBasicBlockList().splice(MovePos, in moveBefore() 113 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument 114 Function::iterator I = MovePos; in moveAfter() 115 MovePos->getParent()->getBasicBlockList().splice(++I, in moveAfter()
|
D | Instruction.cpp | 90 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument 91 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(), in moveBefore()
|
D | Core.cpp | 1535 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockBefore() argument 1536 unwrap(BB)->moveBefore(unwrap(MovePos)); in LLVMMoveBasicBlockBefore() 1539 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockAfter() argument 1540 unwrap(BB)->moveAfter(unwrap(MovePos)); in LLVMMoveBasicBlockAfter()
|
/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/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | BasicBlock.cpp | 121 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument 122 MovePos->getParent()->getBasicBlockList().splice( in moveBefore() 123 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore() 128 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument 129 MovePos->getParent()->getBasicBlockList().splice( in moveAfter() 130 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
|
D | Instruction.cpp | 87 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument 88 moveBefore(*MovePos->getParent(), MovePos->getIterator()); in moveBefore() 91 void Instruction::moveAfter(Instruction *MovePos) { in moveAfter() argument 92 moveBefore(*MovePos->getParent(), ++MovePos->getIterator()); in moveAfter()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | BasicBlock.h | 168 void moveBefore(BasicBlock *MovePos); 172 void moveAfter(BasicBlock *MovePos);
|
D | Instruction.h | 75 void moveBefore(Instruction *MovePos);
|
/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-7.0/llvm/include/llvm/IR/ |
D | BasicBlock.h | 207 void moveBefore(BasicBlock *MovePos); 211 void moveAfter(BasicBlock *MovePos);
|
D | Instruction.h | 110 void moveBefore(Instruction *MovePos); 119 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/swiftshader/third_party/LLVM/include/llvm-c/ |
D | Core.h | 786 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos); 787 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
|
/external/llvm/include/llvm-c/ |
D | Core.h | 2411 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos); 2418 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/ |
D | Core.h | 2637 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos); 2644 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
|