Searched refs:pSrc (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/
H A DBits.h33 INLINE u1 get1(unsigned const char* pSrc) argument
35 return *pSrc;
41 INLINE u2 get2BE(unsigned char const* pSrc) argument
43 return (pSrc[0] << 8) | pSrc[1];
49 INLINE u4 get4BE(unsigned char const* pSrc) argument
51 return (pSrc[0] << 24) | (pSrc[1] << 16) | (pSrc[2] << 8) | pSrc[
57 get8BE(unsigned char const* pSrc) argument
76 get2LE(unsigned char const* pSrc) argument
84 get4LE(unsigned char const* pSrc) argument
99 get8LE(unsigned char const* pSrc) argument
127 const unsigned char* pSrc = *ppSrc; local
138 const unsigned char* pSrc = *ppSrc; local
155 const unsigned char* pSrc = *ppSrc; local
176 const unsigned char* pSrc = *ppSrc; local
186 const unsigned char* pSrc = *ppSrc; local
203 const unsigned char* pSrc = *ppSrc; local
[all...]
/dalvik/libdex/
H A DZipArchive.cpp135 static u2 get2LE(unsigned char const* pSrc) argument
137 return pSrc[0] | (pSrc[1] << 8);
143 static u4 get4LE(unsigned char const* pSrc) argument
147 result = pSrc[0];
148 result |= pSrc[1] << 8;
149 result |= pSrc[2] << 16;
150 result |= pSrc[3] << 24;
/dalvik/dexdump/
H A DDexDump.cpp86 static inline u2 get2LE(unsigned char const* pSrc) argument
88 return pSrc[0] | (pSrc[1] << 8);
94 static inline u4 get4LE(unsigned char const* pSrc) argument
96 return pSrc[0] | (pSrc[1] << 8) | (pSrc[2] << 16) | (pSrc[3] << 24);

Completed in 100 milliseconds