Searched defs:pStream (Results 1 - 3 of 3) sorted by last modified time

/dalvik/libdex/
H A DDexDebugInfo.cpp85 const u1** pStream) {
86 u4 stringIdx = readUnsignedLeb128(pStream);
101 const u1** pStream) {
102 u4 typeIdx = readUnsignedLeb128(pStream);
84 readStringIdx(const DexFile* pDexFile, const u1** pStream) argument
100 readTypeIdx(const DexFile* pDexFile, const u1** pStream) argument
H A DLeb128.cpp32 int readAndVerifyUnsignedLeb128(const u1** pStream, const u1* limit, argument
34 const u1* ptr = *pStream;
35 int result = readUnsignedLeb128(pStream);
37 if (((limit != NULL) && (*pStream > limit))
38 || (((*pStream - ptr) == 5) && (ptr[4] > 0x0f))) {
54 int readAndVerifySignedLeb128(const u1** pStream, const u1* limit, argument
56 const u1* ptr = *pStream;
57 int result = readSignedLeb128(pStream);
59 if (((limit != NULL) && (*pStream > limit))
60 || (((*pStream
[all...]
H A DLeb128.h31 DEX_INLINE int readUnsignedLeb128(const u1** pStream) { argument
32 const u1* ptr = *pStream;
57 *pStream = ptr;
66 DEX_INLINE int readSignedLeb128(const u1** pStream) { argument
67 const u1* ptr = *pStream;
100 *pStream = ptr;
113 int readAndVerifyUnsignedLeb128(const u1** pStream, const u1* limit,
125 int readAndVerifySignedLeb128(const u1** pStream, const u1* limit, bool* okay);

Completed in 113 milliseconds