Home
last modified time | relevance | path

Searched refs:targetOffset (Results 1 – 14 of 14) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DMethodDefinition.java111 … int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset(); in MethodDefinition() local
113targetOffset = findPayloadOffset(targetOffset, Opcode.PACKED_SWITCH_PAYLOAD); in MethodDefinition()
118 if (packedSwitchMap.get(targetOffset, -1) != -1) { in MethodDefinition()
120 findSwitchPayload(targetOffset, Opcode.PACKED_SWITCH_PAYLOAD); in MethodDefinition()
121 targetOffset = endOffset; in MethodDefinition()
123 … ((Instruction31t)instruction).getRegisterA(), targetOffset-codeOffset)); in MethodDefinition()
127 packedSwitchMap.append(targetOffset, codeOffset); in MethodDefinition()
132 … int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset(); in MethodDefinition() local
134targetOffset = findPayloadOffset(targetOffset, Opcode.SPARSE_SWITCH_PAYLOAD); in MethodDefinition()
141 if (sparseSwitchMap.get(targetOffset, -1) != -1) { in MethodDefinition()
[all …]
/external/proguard/src/proguard/optimize/peephole/
DBranchTargetFinder.java555 int targetOffset = offset + branchOffset; in visitBranchInstruction() local
577 markBranchSubroutineStart(offset, branchOffset, targetOffset); in visitBranchInstruction()
692 int targetOffset = offset + jumpOffset; in markBranchTarget() local
694 instructionMarks[targetOffset] |= BRANCH_TARGET; in markBranchTarget()
705 int targetOffset = offset + jumpOffset; in markBranchSubroutineStart() local
709 if (subroutineStarts[targetOffset] == UNKNOWN) in markBranchSubroutineStart()
715 if (subroutineStart > targetOffset) in markBranchSubroutineStart()
717 subroutineStart = targetOffset; in markBranchSubroutineStart()
725 subroutineStarts[targetOffset] = subroutineStart; in markBranchSubroutineStart()
DGotoGotoReplacer.java85 int targetOffset = offset + branchOffset; in visitBranchInstruction() local
90 !codeAttributeEditor.isModified(targetOffset)) in visitBranchInstruction()
93 InstructionFactory.create(codeAttribute.code, targetOffset); in visitBranchInstruction()
DGotoReturnReplacer.java83 int targetOffset = offset + branchInstruction.branchOffset; in visitBranchInstruction() local
86 !codeAttributeEditor.isModified(targetOffset)) in visitBranchInstruction()
89 targetOffset); in visitBranchInstruction()
DGotoCommonCodeReplacer.java107 int targetOffset = offset + branchOffset; in visitBranchInstruction() local
110 int commonCount = commonByteCodeCount(codeAttribute, offset, targetOffset); in visitBranchInstruction()
113 !exceptionBoundary(codeAttribute, offset, targetOffset)) in visitBranchInstruction()
117 …azz)+" (["+(offset-commonCount)+"] - "+branchInstruction.toString(offset)+" -> "+targetOffset+")"); in visitBranchInstruction()
/external/smali/smalidea/src/main/java/org/jf/smalidea/util/
DInstructionUtils.java46 @NotNull SmaliMethod method, @NotNull Opcode opcode, int targetOffset) { in findFirstInstructionWithTarget() argument
59 if (label.getOffset() == targetOffset) { in findFirstInstructionWithTarget()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DByteString.java593 public final void copyTo(byte[] target, int sourceOffset, int targetOffset, in copyTo() argument
596 checkRange(targetOffset, targetOffset + numberToCopy, target.length); in copyTo()
598 copyToInternal(target, sourceOffset, targetOffset, numberToCopy); in copyTo()
609 int targetOffset, int numberToCopy); in copyToInternal() argument
1288 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal() argument
1292 System.arraycopy(bytes, sourceOffset, target, targetOffset, numberToCopy); in copyToInternal()
1524 protected void copyToInternal(byte[] target, int sourceOffset, int targetOffset, in copyToInternal() argument
1527 targetOffset, numberToCopy); in copyToInternal()
DRopeByteString.java344 int targetOffset, int numberToCopy) { in copyToInternal() argument
346 left.copyToInternal(target, sourceOffset, targetOffset, numberToCopy); in copyToInternal()
348 right.copyToInternal(target, sourceOffset - leftLength, targetOffset, in copyToInternal()
352 left.copyToInternal(target, sourceOffset, targetOffset, leftLength); in copyToInternal()
353 right.copyToInternal(target, 0, targetOffset + leftLength, in copyToInternal()
DNioByteString.java108 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal() argument
111 slice.get(target, targetOffset, numberToCopy); in copyToInternal()
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetASCII.java68 int targetOffset = target.arrayOffset(); in decodeLoop() local
69 int targetIndex = oldTarget + targetOffset; in decodeLoop()
226 int targetOffset = target.arrayOffset(); in encodeLoop() local
227 int targetIndex = oldTarget + targetOffset; in encodeLoop()
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
DByteStringMicro.java139 final int targetOffset, in copyTo() argument
141 System.arraycopy(bytes, sourceOffset, target, targetOffset, size); in copyTo()
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DIRBuilder.java817 public void addGoto(int targetOffset) {
819 BasicBlock targetBlock = getTarget(targetOffset);
825 addToWorklist(targetBlock, source.instructionIndex(targetOffset));
1283 int targetOffset = targetOffsets[i];
1284 BasicBlock targetBlock = getTarget(targetOffset);
1285 Integer targetBlockIndex = offsetToBlockIndex.get(targetOffset);
1289 addToWorklist(targetBlock, source.instructionIndex(targetOffset));
1291 offsetToBlockIndex.put(targetOffset, successorIndex);
1573 for (int targetOffset : catchHandlers.getAllTargets()) {
1574 BasicBlock target = getTarget(targetOffset);
[all …]
DDexBuilder.java586 int targetOffset = getInfo(target.entry()).getOffset();
589 catchAllOffset = targetOffset;
591 pairs.add(new TypeAddrPair(type, targetOffset, -1));
/external/doclava/res/assets/templates-sdk/assets/js/
Ddocs.js4449 var targetOffset = target.offset().top - this.offset().top;
4451 if (targetOffset > containerHeight * .8) { // multiply nav height by .8 so we move up the item
4454 this.scrollTop(targetOffset - (containerHeight * .8));