Home
last modified time | relevance | path

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

/dalvik/dx/tests/116-leb128/com/android/dx/util/
DLeb128UtilsTest.java45 assertEquals(0, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 0))); in testDecodeSignedLeb()
46 assertEquals(1, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 1))); in testDecodeSignedLeb()
47 assertEquals(-1, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 0x7f))); in testDecodeSignedLeb()
48 assertEquals(0x3c, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 0x3c))); in testDecodeSignedLeb()
49 assertEquals(-128, Leb128Utils.readSignedLeb128( in testDecodeSignedLeb()
/dalvik/libdex/
DLeb128.cpp57 int result = readSignedLeb128(pStream); in readAndVerifySignedLeb128()
DLeb128.h66 DEX_INLINE int readSignedLeb128(const u1** pStream) { in readSignedLeb128() function
DDexCatch.h68 s4 count = readSignedLeb128(&pEncodedData); in dexCatchIteratorInitToPointer()
DDexDebugInfo.cpp224 line += readSignedLeb128(&stream); in dexDecodeDebugInfo0()
/dalvik/dx/src/com/android/dx/util/
DLeb128Utils.java82 public static int readSignedLeb128(ByteInput in) { in readSignedLeb128() method in Leb128Utils
/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.java373 line += Leb128Utils.readSignedLeb128(bs); in decode0()
/dalvik/dx/src/com/android/dx/io/
DDexBuffer.java366 return Leb128Utils.readSignedLeb128(this);