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

/dalvik/dx/tests/116-leb128/com/android/dx/util/
H A DLeb128UtilsTest.java45 assertEquals(0, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 0)));
46 assertEquals(1, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 1)));
47 assertEquals(-1, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 0x7f)));
48 assertEquals(0x3c, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 0x3c)));
49 assertEquals(-128, Leb128Utils.readSignedLeb128(
/dalvik/libdex/
H A DLeb128.cpp57 int result = readSignedLeb128(pStream);
H A DLeb128.h66 DEX_INLINE int readSignedLeb128(const u1** pStream) { function
H A DDexCatch.h68 s4 count = readSignedLeb128(&pEncodedData);
H A DDexDebugInfo.cpp224 line += readSignedLeb128(&stream);
/dalvik/dx/src/com/android/dx/util/
H A DLeb128Utils.java82 public static int readSignedLeb128(ByteInput in) { method in class:Leb128Utils
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoDecoder.java379 line += readSignedLeb128(bs);
602 public static int readSignedLeb128(InputStream bs) throws IOException { method in class:DebugInfoDecoder
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoDecoder.java373 line += Leb128Utils.readSignedLeb128(bs);
/dalvik/dx/src/com/android/dx/io/
H A DDexBuffer.java372 return Leb128Utils.readSignedLeb128(this);

Completed in 9 milliseconds