HomeSort by relevance Sort by last modified time
    Searched refs:targetOffset (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/smali/smalidea/src/main/java/org/jf/smalidea/util/
InstructionUtils.java 46 @NotNull SmaliMethod method, @NotNull Opcode opcode, int targetOffset) {
59 if (label.getOffset() == targetOffset) {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
IndexData.java 54 * @param targetOffset offset in indices buffer
58 public void updateIndices (int targetOffset, short[] indices, int offset, int count);
VertexData.java 53 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count);
IndexArray.java 89 public void updateIndices (int targetOffset, short[] indices, int offset, int count) {
91 byteBuffer.position(targetOffset * 2);
IndexBufferObject.java 140 public void updateIndices (int targetOffset, short[] indices, int offset, int count) {
143 byteBuffer.position(targetOffset * 2);
IndexBufferObjectSubData.java 146 public void updateIndices (int targetOffset, short[] indices, int offset, int count) {
149 byteBuffer.position(targetOffset * 2);
VertexArray.java 90 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
92 byteBuffer.position(targetOffset * 4);
VertexBufferObject.java 153 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
156 byteBuffer.position(targetOffset * 4);
VertexBufferObjectSubData.java 136 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
140 byteBuffer.position(targetOffset * 4);
VertexBufferObjectWithVAO.java 119 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
122 byteBuffer.position(targetOffset * 4);
  /external/proguard/src/proguard/optimize/peephole/
GotoGotoReplacer.java 85 int targetOffset = offset + branchOffset;
90 !codeAttributeEditor.isModified(targetOffset))
93 InstructionFactory.create(codeAttribute.code, targetOffset);
GotoReturnReplacer.java 83 int targetOffset = offset + branchInstruction.branchOffset;
86 !codeAttributeEditor.isModified(targetOffset))
89 targetOffset);
GotoCommonCodeReplacer.java 107 int targetOffset = offset + branchOffset;
110 int commonCount = commonByteCodeCount(codeAttribute, offset, targetOffset);
113 !exceptionBoundary(codeAttribute, offset, targetOffset))
117 System.out.println("GotoCommonCodeReplacer: "+clazz.getName()+"."+method.getName(clazz)+" (["+(offset-commonCount)+"] - "+branchInstruction.toString(offset)+" -> "+targetOffset+")");
BranchTargetFinder.java 555 int targetOffset = offset + branchOffset;
577 markBranchSubroutineStart(offset, branchOffset, targetOffset);
692 int targetOffset = offset + jumpOffset;
694 instructionMarks[targetOffset] |= BRANCH_TARGET;
705 int targetOffset = offset + jumpOffset;
709 if (subroutineStarts[targetOffset] == UNKNOWN)
715 if (subroutineStart > targetOffset)
717 subroutineStart = targetOffset;
725 subroutineStarts[targetOffset] = subroutineStart;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 111 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 = findPayloadOffset(targetOffset, Opcode.SPARSE_SWITCH_PAYLOAD)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
BoundedByteString.java 120 int targetOffset, int numberToCopy) {
122 targetOffset, numberToCopy);
ByteString.java 474 * @param targetOffset offset within the target buffer
479 public void copyTo(byte[] target, int sourceOffset, int targetOffset,
484 if (targetOffset < 0) {
485 throw new IndexOutOfBoundsException("Target offset < 0: " + targetOffset);
494 if (targetOffset + numberToCopy > target.length) {
496 "Target end offset < 0: " + (targetOffset + numberToCopy));
499 copyToInternal(target, sourceOffset, targetOffset, numberToCopy);
510 int targetOffset, int numberToCopy);
    [all...]
LiteralByteString.java 114 int targetOffset, int numberToCopy) {
117 System.arraycopy(bytes, sourceOffset, target, targetOffset, numberToCopy);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/
IndexBufferObject.java 124 public void updateIndices (int targetOffset, short[] indices, int offset, int count) {
127 buffer.position(targetOffset);
VertexBufferObject.java 122 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
125 buffer.position(targetOffset);
VertexBufferObjectWithVAO.java 116 public void updateVertices (int targetOffset, float[] vertices, int sourceOffset, int count) {
119 buffer.position(targetOffset);
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
ByteStringMicro.java 135 * @param targetOffset offset within the target buffer
139 final int targetOffset,
141 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetASCII.java 65 int targetOffset = target.arrayOffset();
66 int targetIndex = oldTarget + targetOffset;
221 int targetOffset = target.arrayOffset();
222 int targetIndex = oldTarget + targetOffset;
  /libcore/luni/src/main/native/
libcore_icu_NativeConverter.cpp 209 jint* targetOffset = &myData[1];
212 char* cTarget = reinterpret_cast<char*>(uTarget.get() + *targetOffset);
217 *targetOffset = (reinterpret_cast<jbyte*>(cTarget) - uTarget.get());
265 jint* targetOffset = &myData[1];
268 UChar* cTarget = uTarget.get() + *targetOffset;
273 *targetOffset = cTarget - uTarget.get() - *targetOffset;
  /libcore/ojluni/src/main/java/java/util/stream/
SliceOps.java 563 private final long targetOffset, targetSize;
576 this.targetOffset = offset;
584 this.targetOffset = parent.targetOffset;
643 && isLeftCompleted(targetOffset + targetSize))
657 long to = targetSize >= 0 ? Math.min(input.count(), targetOffset + targetSize) : thisNodeSize;
658 return input.truncate(targetOffset, to, generator);
    [all...]

Completed in 529 milliseconds

1 2 3