Lines Matching refs:result

27     unsigned short result;  in get2BE()  local
29 result = *pSrc++ << 8; in get2BE()
30 result |= *pSrc++; in get2BE()
32 return result; in get2BE()
40 unsigned int result; in get4BE() local
42 result = *pSrc++ << 24; in get4BE()
43 result |= *pSrc++ << 16; in get4BE()
44 result |= *pSrc++ << 8; in get4BE()
45 result |= *pSrc++; in get4BE()
47 return result; in get4BE()
55 unsigned long long result; in get8BE() local
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()
66 return result; in get8BE()
74 unsigned short result; in get2LE() local
76 result = *pSrc++; in get2LE()
77 result |= *pSrc++ << 8; in get2LE()
79 return result; in get2LE()
87 unsigned int result; in get4LE() local
89 result = *pSrc++; in get4LE()
90 result |= *pSrc++ << 8; in get4LE()
91 result |= *pSrc++ << 16; in get4LE()
92 result |= *pSrc++ << 24; in get4LE()
94 return result; in get4LE()
102 unsigned long long result; in get8LE() local
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()
113 return result; in get8LE()
129 unsigned short result; in read2BE() local
131 result = *(*ppSrc)++ << 8; in read2BE()
132 result |= *(*ppSrc)++; in read2BE()
134 return result; in read2BE()
142 unsigned int result; in read4BE() local
144 result = *(*ppSrc)++ << 24; in read4BE()
145 result |= *(*ppSrc)++ << 16; in read4BE()
146 result |= *(*ppSrc)++ << 8; in read4BE()
147 result |= *(*ppSrc)++; in read4BE()
149 return result; in read4BE()
157 unsigned long long result; in read8BE() local
159 result = (unsigned long long) *(*ppSrc)++ << 56; in read8BE()
160 result |= (unsigned long long) *(*ppSrc)++ << 48; in read8BE()
161 result |= (unsigned long long) *(*ppSrc)++ << 40; in read8BE()
162 result |= (unsigned long long) *(*ppSrc)++ << 32; in read8BE()
163 result |= (unsigned long long) *(*ppSrc)++ << 24; in read8BE()
164 result |= (unsigned long long) *(*ppSrc)++ << 16; in read8BE()
165 result |= (unsigned long long) *(*ppSrc)++ << 8; in read8BE()
166 result |= (unsigned long long) *(*ppSrc)++; in read8BE()
168 return result; in read8BE()
176 unsigned short result; in read2LE() local
178 result = *(*ppSrc)++; in read2LE()
179 result |= *(*ppSrc)++ << 8; in read2LE()
181 return result; in read2LE()
189 unsigned int result; in read4LE() local
191 result = *(*ppSrc)++; in read4LE()
192 result |= *(*ppSrc)++ << 8; in read4LE()
193 result |= *(*ppSrc)++ << 16; in read4LE()
194 result |= *(*ppSrc)++ << 24; in read4LE()
196 return result; in read4LE()
204 unsigned long long result; in read8LE() local
206 result = (unsigned long long) *(*ppSrc)++; in read8LE()
207 result |= (unsigned long long) *(*ppSrc)++ << 8; in read8LE()
208 result |= (unsigned long long) *(*ppSrc)++ << 16; in read8LE()
209 result |= (unsigned long long) *(*ppSrc)++ << 24; in read8LE()
210 result |= (unsigned long long) *(*ppSrc)++ << 32; in read8LE()
211 result |= (unsigned long long) *(*ppSrc)++ << 40; in read8LE()
212 result |= (unsigned long long) *(*ppSrc)++ << 48; in read8LE()
213 result |= (unsigned long long) *(*ppSrc)++ << 56; in read8LE()
215 return result; in read8LE()