Searched refs:pSrc (Results 1 – 1 of 1) sorted by relevance
17 INLINE unsigned char get1(unsigned const char* pSrc) in get1() argument19 return *pSrc; in get1()25 INLINE unsigned short get2BE(unsigned char const* pSrc) in get2BE() argument29 result = *pSrc++ << 8; in get2BE()30 result |= *pSrc++; in get2BE()38 INLINE unsigned int get4BE(unsigned char const* pSrc) in get4BE() argument42 result = *pSrc++ << 24; in get4BE()43 result |= *pSrc++ << 16; in get4BE()44 result |= *pSrc++ << 8; in get4BE()45 result |= *pSrc++; in get4BE()[all …]