Home
last modified time | relevance | path

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

/bootable/recovery/minzip/
DBits.h17 INLINE unsigned char get1(unsigned const char* pSrc) in get1() argument
19 return *pSrc; in get1()
25 INLINE unsigned short get2BE(unsigned char const* pSrc) in get2BE() argument
29 result = *pSrc++ << 8; in get2BE()
30 result |= *pSrc++; in get2BE()
38 INLINE unsigned int get4BE(unsigned char const* pSrc) in get4BE() argument
42 result = *pSrc++ << 24; in get4BE()
43 result |= *pSrc++ << 16; in get4BE()
44 result |= *pSrc++ << 8; in get4BE()
45 result |= *pSrc++; in get4BE()
[all …]