Searched refs:jumpOffset (Results 1 – 3 of 3) sorted by relevance
/external/proguard/src/proguard/optimize/peephole/ |
D | BranchTargetFinder.java | 668 private void markBranch(int offset, int jumpOffset) in markBranch() argument 670 markBranchTarget(offset, jumpOffset); in markBranch() 674 markBranchSubroutineStart(offset, jumpOffset, currentSubroutineStart); in markBranch() 690 private void markBranchTarget(int offset, int jumpOffset) in markBranchTarget() argument 692 int targetOffset = offset + jumpOffset; in markBranchTarget() 702 int jumpOffset, in markBranchSubroutineStart() argument 705 int targetOffset = offset + jumpOffset; in markBranchSubroutineStart() 712 if (jumpOffset < 0) in markBranchSubroutineStart()
|
/external/proguard/src/proguard/classfile/visitor/ |
D | ClassPrinter.java | 739 int jumpOffset = jumpOffsets[index]; in visitTableSwitchInstruction() local 740 …itchInstruction.lowCase + index) + ": offset = " + jumpOffset + ", target = " + (offset + jumpOff… in visitTableSwitchInstruction() 761 int jumpOffset = jumpOffsets[index]; in visitLookUpSwitchInstruction() local 762 …n(Integer.toString(cases[index]) + ": offset = " + jumpOffset + ", target = " + (offset + jumpOff… in visitLookUpSwitchInstruction()
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrVisitor.java | 1506 … final int jumpOffset = ((Block) ctx.m_blocks.m_blocks.get (targetBlockID)).m_first - ip; in emitJumpOffset2() local 1508 out.write2 (jumpOffset >>> 8, // targetbyte1 in emitJumpOffset2() 1509 jumpOffset); // targetbyte2 in emitJumpOffset2() 1530 … final int jumpOffset = ((Block) ctx.m_blocks.m_blocks.get (targetBlockID)).m_first - ip; in emitJumpOffset4() local 1532 out.write4 (jumpOffset >>> 24, // targetbyte1 in emitJumpOffset4() 1533 jumpOffset >>> 16, // targetbyte2 in emitJumpOffset4() 1534 jumpOffset >>> 8, // targetbyte3 in emitJumpOffset4() 1535 jumpOffset); // targetbyte4 in emitJumpOffset4()
|