Lines Matching refs:pSrc
17 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()
53 INLINE unsigned long long get8BE(unsigned char const* pSrc) in get8BE() argument
57 result = (unsigned long long) *pSrc++ << 56; in get8BE()
58 result |= (unsigned long long) *pSrc++ << 48; in get8BE()
59 result |= (unsigned long long) *pSrc++ << 40; in get8BE()
60 result |= (unsigned long long) *pSrc++ << 32; in get8BE()
61 result |= (unsigned long long) *pSrc++ << 24; in get8BE()
62 result |= (unsigned long long) *pSrc++ << 16; in get8BE()
63 result |= (unsigned long long) *pSrc++ << 8; in get8BE()
64 result |= (unsigned long long) *pSrc++; in get8BE()
72 INLINE unsigned short get2LE(unsigned char const* pSrc) in get2LE() argument
76 result = *pSrc++; in get2LE()
77 result |= *pSrc++ << 8; in get2LE()
85 INLINE unsigned int get4LE(unsigned char const* pSrc) in get4LE() argument
89 result = *pSrc++; in get4LE()
90 result |= *pSrc++ << 8; in get4LE()
91 result |= *pSrc++ << 16; in get4LE()
92 result |= *pSrc++ << 24; in get4LE()
100 INLINE unsigned long long get8LE(unsigned char const* pSrc) in get8LE() argument
104 result = (unsigned long long) *pSrc++; in get8LE()
105 result |= (unsigned long long) *pSrc++ << 8; in get8LE()
106 result |= (unsigned long long) *pSrc++ << 16; in get8LE()
107 result |= (unsigned long long) *pSrc++ << 24; in get8LE()
108 result |= (unsigned long long) *pSrc++ << 32; in get8LE()
109 result |= (unsigned long long) *pSrc++ << 40; in get8LE()
110 result |= (unsigned long long) *pSrc++ << 48; in get8LE()
111 result |= (unsigned long long) *pSrc++ << 56; in get8LE()