Searched refs:readSignedLeb128 (Results 1 – 7 of 7) sorted by relevance
47 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()
57 int result = readSignedLeb128(pStream); in readAndVerifySignedLeb128()
66 DEX_INLINE int readSignedLeb128(const u1** pStream) { in readSignedLeb128() function
68 s4 count = readSignedLeb128(&pEncodedData); in dexCatchIteratorInitToPointer()
224 line += readSignedLeb128(&stream); in dexDecodeDebugInfo0()
379 line += readSignedLeb128(bs); in decode0()602 public static int readSignedLeb128(InputStream bs) throws IOException { in readSignedLeb128() method in DebugInfoDecoder
383 line += Leb128.readSignedLeb128(bs); in decode0()