Searched defs:targetOffset (Results 1 - 9 of 9) sorted by relevance

/external/smali/smalidea/src/main/java/org/jf/smalidea/util/
H A DInstructionUtils.java46 @NotNull SmaliMethod method, @NotNull Opcode opcode, int targetOffset) {
59 if (label.getOffset() == targetOffset) {
45 findFirstInstructionWithTarget( @otNull SmaliMethod method, @NotNull Opcode opcode, int targetOffset) argument
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java135 * @param targetOffset offset within the target buffer
139 final int targetOffset,
141 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
138 copyTo(final byte[] target, final int sourceOffset, final int targetOffset, final int size) argument
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DNioByteString.java108 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) {
111 slice.get(target, targetOffset, numberToCopy);
107 copyToInternal( byte[] target, int sourceOffset, int targetOffset, int numberToCopy) argument
H A DByteString.java588 * @param targetOffset offset within the target buffer
593 public final void copyTo(byte[] target, int sourceOffset, int targetOffset, argument
596 checkRange(targetOffset, targetOffset + numberToCopy, target.length);
598 copyToInternal(target, sourceOffset, targetOffset, numberToCopy);
609 int targetOffset, int numberToCopy);
1288 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) {
1292 System.arraycopy(bytes, sourceOffset, target, targetOffset, numberToCopy);
1524 protected void copyToInternal(byte[] target, int sourceOffset, int targetOffset, argument
1527 targetOffset, numberToCop
608 copyToInternal(byte[] target, int sourceOffset, int targetOffset, int numberToCopy) argument
1287 copyToInternal( byte[] target, int sourceOffset, int targetOffset, int numberToCopy) argument
[all...]
H A DRopeByteString.java344 int targetOffset, int numberToCopy) {
346 left.copyToInternal(target, sourceOffset, targetOffset, numberToCopy);
348 right.copyToInternal(target, sourceOffset - leftLength, targetOffset,
352 left.copyToInternal(target, sourceOffset, targetOffset, leftLength);
353 right.copyToInternal(target, 0, targetOffset + leftLength,
343 copyToInternal(byte[] target, int sourceOffset, int targetOffset, int numberToCopy) argument
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DMethodDefinition.java111 int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset();
113 targetOffset = findPayloadOffset(targetOffset, Opcode.PACKED_SWITCH_PAYLOAD);
118 if (packedSwitchMap.get(targetOffset, -1) != -1) {
120 findSwitchPayload(targetOffset, Opcode.PACKED_SWITCH_PAYLOAD);
121 targetOffset = endOffset;
123 ((Instruction31t)instruction).getRegisterA(), targetOffset-codeOffset));
127 packedSwitchMap.append(targetOffset, codeOffset);
132 int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset();
134 targetOffset
248 findSwitchPayload(int targetOffset, Opcode type) argument
277 findPayloadOffset(int targetOffset, Opcode type) argument
[all...]
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
H A DIRBuilder.java817 public void addGoto(int targetOffset) { argument
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);
1675 ensureSuccessorBlock(int sourceOffset, int targetOffset, boolean normal) argument
1689 ensureNormalSuccessorBlock(int sourceOffset, int targetOffset) argument
1693 ensureExceptionalSuccessorBlock(int sourceOffset, int targetOffset) argument
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 252 milliseconds