Home | History | Annotate | Download | only in dexdump

Lines Matching full:psrc

94 static inline u2 get2LE(unsigned char const* pSrc)
96 return pSrc[0] | (pSrc[1] << 8);
102 static inline u4 get4LE(unsigned char const* pSrc)
104 return pSrc[0] | (pSrc[1] << 8) | (pSrc[2] << 16) | (pSrc[3] << 24);