Home
last modified time | relevance | path

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

/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
DFormat3rms.java41 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getB()
46 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 4); in getC()
DFormat3rmi.java41 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getB()
46 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 4); in getC()
DFormat32x.java36 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getA()
41 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 4); in getB()
DFormat3rc.java43 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getB()
48 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 4); in getC()
DFormat20bc.java44 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 1); in getB()
DFormat22x.java40 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getB()
DFormat22cs.java48 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getC()
DFormat35mi.java43 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getB()
DFormat35ms.java43 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getB()
DFormat21c.java42 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getB()
DFormat22c.java47 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getC()
DRawInsnHelper.java55 public static long getUnsignedShortFromTwoBytes(byte[] raw, int idx) { in getUnsignedShortFromTwoBytes() method in RawInsnHelper
DFormat35c.java45 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2); in getB()
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java405 int targetsSize = (int) RawInsnHelper.getUnsignedShortFromTwoBytes(dataInsn.rawBytes, rawPtr); in readSwitchInstruction()