Home
last modified time | relevance | path

Searched refs:readSignedLeb128 (Results 1 – 5 of 5) sorted by relevance

/dalvik/dx/tests/116-leb128/com/android/dx/util/
DLeb128UtilsTest.java47 assertEquals(0, Leb128.readSignedLeb128(new ByteArrayByteInput((byte) 0))); in testDecodeSignedLeb()
48 assertEquals(1, Leb128.readSignedLeb128(new ByteArrayByteInput((byte) 1))); in testDecodeSignedLeb()
49 assertEquals(-1, Leb128.readSignedLeb128(new ByteArrayByteInput((byte) 0x7f))); in testDecodeSignedLeb()
50 assertEquals(0x3c, Leb128.readSignedLeb128(new ByteArrayByteInput((byte) 0x3c))); in testDecodeSignedLeb()
51 assertEquals(-128, Leb128.readSignedLeb128( in testDecodeSignedLeb()
/dalvik/dx/src/com/android/dex/
DLeb128.java54 public static int readSignedLeb128(ByteInput in) { in readSignedLeb128() method in Leb128
DDex.java386 return Leb128.readSignedLeb128(this); in readSleb128()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DDebugInfoDecoder.java379 line += readSignedLeb128(bs); in decode0()
602 public static int readSignedLeb128(InputStream bs) throws IOException { in readSignedLeb128() method in DebugInfoDecoder
/dalvik/dx/src/com/android/dx/dex/file/
DDebugInfoDecoder.java384 line += Leb128.readSignedLeb128(bs); in decode0()