Home | History | Annotate | Download | only in dexdump

Lines Matching refs:pSrc

87 static inline u2 get2LE(unsigned char const* pSrc)
89 return pSrc[0] | (pSrc[1] << 8);
95 static inline u4 get4LE(unsigned char const* pSrc)
97 return pSrc[0] | (pSrc[1] << 8) | (pSrc[2] << 16) | (pSrc[3] << 24);