HomeSort by relevance Sort by last modified time
    Searched full:instructionstart (Results 1 - 25 of 40) sorted by null

1 2

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction35c.java 46 int instructionStart) {
47 super(dexFile, opcode, instructionStart);
51 return NibbleUtils.extractHighUnsignedNibble(dexFile.readUbyte(instructionStart + 1));
56 return NibbleUtils.extractLowUnsignedNibble(dexFile.readUbyte(instructionStart + 4));
61 return NibbleUtils.extractHighUnsignedNibble(dexFile.readUbyte(instructionStart + 4));
66 return NibbleUtils.extractLowUnsignedNibble(dexFile.readUbyte(instructionStart + 5));
71 return NibbleUtils.extractHighUnsignedNibble(dexFile.readUbyte(instructionStart + 5));
76 return NibbleUtils.extractLowUnsignedNibble(dexFile.readUbyte(instructionStart + 1));
83 dexFile.readUshort(instructionStart + 2));
DexBackedInstruction35mi.java 44 int instructionStart) {
45 super(dexFile, opcode, instructionStart);
49 return NibbleUtils.extractHighUnsignedNibble(dexFile.readUbyte(instructionStart + 1));
54 return NibbleUtils.extractLowUnsignedNibble(dexFile.readUbyte(instructionStart + 4));
59 return NibbleUtils.extractHighUnsignedNibble(dexFile.readUbyte(instructionStart + 4));
64 return NibbleUtils.extractLowUnsignedNibble(dexFile.readUbyte(instructionStart + 5));
69 return NibbleUtils.extractHighUnsignedNibble(dexFile.readUbyte(instructionStart + 5));
74 return NibbleUtils.extractLowUnsignedNibble(dexFile.readUbyte(instructionStart + 1));
79 return dexFile.readUshort(instructionStart + 2);
DexBackedInstruction35ms.java 44 int instructionStart) {
45 super(dexFile, opcode, instructionStart);
49 return NibbleUtils.extractHighUnsignedNibble(dexFile.readUbyte(instructionStart + 1));
54 return NibbleUtils.extractLowUnsignedNibble(dexFile.readUbyte(instructionStart + 4));
59 return NibbleUtils.extractHighUnsignedNibble(dexFile.readUbyte(instructionStart + 4));
64 return NibbleUtils.extractLowUnsignedNibble(dexFile.readUbyte(instructionStart + 5));
69 return NibbleUtils.extractHighUnsignedNibble(dexFile.readUbyte(instructionStart + 5));
74 return NibbleUtils.extractLowUnsignedNibble(dexFile.readUbyte(instructionStart + 1));
79 return dexFile.readUshort(instructionStart + 2);
DexBackedInstruction21lh.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUbyte(instructionStart + 1); }
49 @Override public short getHatLiteral() { return (short)dexFile.readShort(instructionStart + 2); }
DexBackedInstruction21s.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUbyte(instructionStart + 1); }
48 @Override public int getNarrowLiteral() { return dexFile.readShort(instructionStart + 2); }
DexBackedInstruction21t.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUbyte(instructionStart + 1); }
48 @Override public int getCodeOffset() { return dexFile.readShort(instructionStart + 2); }
DexBackedInstruction22x.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUbyte(instructionStart + 1); }
48 @Override public int getRegisterB() { return dexFile.readUshort(instructionStart + 2); }
DexBackedInstruction31i.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUbyte(instructionStart + 1); }
48 @Override public int getNarrowLiteral() { return dexFile.readInt(instructionStart + 2); }
DexBackedInstruction31t.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUbyte(instructionStart + 1); }
48 @Override public int getCodeOffset() { return dexFile.readInt(instructionStart + 2); }
DexBackedInstruction32x.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUshort(instructionStart + 2); }
48 @Override public int getRegisterB() { return dexFile.readUshort(instructionStart + 4); }
DexBackedInstruction51l.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUbyte(instructionStart + 1); }
48 @Override public long getWideLiteral() { return dexFile.readLong(instructionStart + 2); }
DexBackedUnknownInstruction.java 42 int instructionStart) {
43 super(dexFile, Opcode.NOP, instructionStart);
47 int opcode = dexFile.readUbyte(instructionStart);
49 opcode = dexFile.readUshort(instructionStart);
DexBackedInstruction20bc.java 46 int instructionStart) {
47 super(dexFile, opcode, instructionStart);
50 @Override public int getVerificationError() { return dexFile.readUbyte(instructionStart + 1) & 0x3f; }
56 return DexBackedReference.makeReference(dexFile, referenceType, dexFile.readUshort(instructionStart + 2));
60 int referenceType = (dexFile.readUbyte(instructionStart + 1) >>> 6) + 1;
DexBackedInstruction22b.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUbyte(instructionStart + 1); }
48 @Override public int getRegisterB() { return dexFile.readUbyte(instructionStart + 2); }
49 @Override public int getNarrowLiteral() { return dexFile.readByte(instructionStart + 3); }
DexBackedInstruction22c.java 46 int instructionStart) {
47 super(dexFile, opcode, instructionStart);
52 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
57 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1));
63 return DexBackedReference.makeReference(dexFile, opcode.referenceType, dexFile.readUshort(instructionStart + 2));
DexBackedInstruction22cs.java 44 int instructionStart) {
45 super(dexFile, opcode, instructionStart);
50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1));
60 return dexFile.readUshort(instructionStart + 2);
DexBackedInstruction22s.java 44 int instructionStart) {
45 super(dexFile, opcode, instructionStart);
50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1));
58 @Override public int getNarrowLiteral() { return dexFile.readShort(instructionStart + 2); }
DexBackedInstruction22t.java 44 int instructionStart) {
45 super(dexFile, opcode, instructionStart);
50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1));
58 @Override public int getCodeOffset() { return dexFile.readShort(instructionStart + 2); }
DexBackedInstruction23x.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getRegisterA() { return dexFile.readUbyte(instructionStart + 1); }
48 @Override public int getRegisterB() { return dexFile.readUbyte(instructionStart + 2); }
49 @Override public int getRegisterC() { return dexFile.readUbyte(instructionStart + 3); }
DexBackedInstruction3rc.java 45 int instructionStart) {
46 super(dexFile, opcode, instructionStart);
50 return dexFile.readUbyte(instructionStart + 1);
55 return dexFile.readUshort(instructionStart + 4);
62 dexFile.readUshort(instructionStart + 2));
DexBackedInstruction3rmi.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
48 return dexFile.readUbyte(instructionStart + 1);
53 return dexFile.readUshort(instructionStart + 4);
58 return dexFile.readUshort(instructionStart + 2);
DexBackedInstruction3rms.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
48 return dexFile.readUbyte(instructionStart + 1);
53 return dexFile.readUshort(instructionStart + 4);
58 return dexFile.readUshort(instructionStart + 2);
DexBackedPackedSwitchPayload.java 51 int instructionStart) {
52 super(dexFile, Opcode.PACKED_SWITCH_PAYLOAD, instructionStart);
54 elementCount = dexFile.readUshort(instructionStart + ELEMENT_COUNT_OFFSET);
60 final int firstKey = dexFile.readInt(instructionStart + FIRST_KEY_OFFSET);
73 return dexFile.readInt(instructionStart + TARGETS_OFFSET + index*4);
DexBackedSparseSwitchPayload.java 50 int instructionStart) {
51 super(dexFile, Opcode.SPARSE_SWITCH_PAYLOAD, instructionStart);
53 elementCount = dexFile.readUshort(instructionStart + ELEMENT_COUNT_OFFSET);
66 return dexFile.readInt(instructionStart + KEYS_OFFSET + index*4);
71 return dexFile.readInt(instructionStart + KEYS_OFFSET + elementCount*4 + index*4);
DexBackedInstruction10t.java 43 int instructionStart) {
44 super(dexFile, opcode, instructionStart);
47 @Override public int getCodeOffset() { return dexFile.readByte(instructionStart + 1); }

Completed in 301 milliseconds

1 2