Home | History | Annotate | Download | only in libdex

Lines Matching defs:ptr

32     const u1* ptr = *pStream;
33 int result = *(ptr++);
36 int cur = *(ptr++);
39 cur = *(ptr++);
42 cur = *(ptr++);
50 cur = *(ptr++);
57 *pStream = ptr;
67 const u1* ptr = *pStream;
68 int result = *(ptr++);
73 int cur = *(ptr++);
78 cur = *(ptr++);
83 cur = *(ptr++);
93 cur = *(ptr++);
100 *pStream = ptr;
133 DEX_INLINE u1* writeUnsignedLeb128(u1* ptr, u4 data)
138 *ptr++ = out | 0x80;
141 *ptr++ = out;
146 return ptr;