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

  /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 551 int targetOffset = offset + branchOffset;
573 markBranchSubroutineStart(offset, branchOffset, targetOffset);
673 int targetOffset = offset + jumpOffset;
675 instructionMarks[targetOffset] |= BRANCH_TARGET;
686 int targetOffset = offset + jumpOffset;
690 if (subroutineStarts[targetOffset] == UNKNOWN)
696 if (subroutineStart > targetOffset)
698 subroutineStart = targetOffset;
706 subroutineStarts[targetOffset] = subroutineStart;
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
BoundedByteString.java 120 int targetOffset, int numberToCopy) {
122 targetOffset, numberToCopy);
ByteString.java 460 * @param targetOffset offset within the target buffer
465 public void copyTo(byte[] target, int sourceOffset, int targetOffset,
470 if (targetOffset < 0) {
471 throw new IndexOutOfBoundsException("Target offset < 0: " + targetOffset);
480 if (targetOffset + numberToCopy > target.length) {
482 "Target end offset < 0: " + (targetOffset + numberToCopy));
485 copyToInternal(target, sourceOffset, targetOffset, numberToCopy);
496 int targetOffset, int numberToCopy);
    [all...]
LiteralByteString.java 114 int targetOffset, int numberToCopy) {
117 System.arraycopy(bytes, sourceOffset, target, targetOffset, numberToCopy);
RopeByteString.java 359 int targetOffset, int numberToCopy) {
361 left.copyToInternal(target, sourceOffset, targetOffset, numberToCopy);
363 right.copyToInternal(target, sourceOffset - leftLength, targetOffset,
367 left.copyToInternal(target, sourceOffset, targetOffset, leftLength);
368 right.copyToInternal(target, 0, targetOffset + leftLength,
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 99 int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset();
101 targetOffset = findSwitchPayload(targetOffset, Opcode.PACKED_SWITCH_PAYLOAD);
106 packedSwitchMap.append(targetOffset, codeOffset);
111 int targetOffset = codeOffset + ((OffsetInstruction)instruction).getCodeOffset();
113 targetOffset = findSwitchPayload(targetOffset, Opcode.SPARSE_SWITCH_PAYLOAD);
120 sparseSwitchMap.append(targetOffset, codeOffset);
208 public int findSwitchPayload(int targetOffset, Opcode type) {
211 targetIndex = instructionOffsetMap.getInstructionIndexAtCodeOffset(targetOffset);
    [all...]
  /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/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEConvolveMatrix.cpp 38 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
44 , m_targetOffset(targetOffset)
55 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
58 return adoptRef(new FEConvolveMatrix(filter, kernelSize, divisor, bias, targetOffset, edgeMode, kernelUnitLength,
120 IntPoint FEConvolveMatrix::targetOffset() const
125 bool FEConvolveMatrix::setTargetOffset(const IntPoint& targetOffset)
127 if (m_targetOffset == targetOffset)
129 m_targetOffset = targetOffset;
FEConvolveMatrix.h 60 IntPoint targetOffset() const;
  /external/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 187 * @param targetOffset offset within the target buffer
191 final int targetOffset,
193 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
  /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;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.cpp 141 FloatPoint targetOffset(
145 view->setScrollPosition(flooredIntPoint(targetOffset));
147 FloatPoint remainder = FloatPoint(targetOffset - view->scrollPosition());
FrameView.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 

Completed in 1186 milliseconds