Lines Matching refs:_bytes
195 uint8 *_bytes = (uint8 *)(bytes); \
196 _bytes[0] = _val & 0xff; \
197 _bytes[1] = _val >> 8; \
202 uint8 *_bytes = (uint8 *)(bytes); \
203 _bytes[0] = _val & 0xff; \
204 _bytes[1] = (_val >> 8) & 0xff; \
205 _bytes[2] = (_val >> 16) & 0xff; \
206 _bytes[3] = _val >> 24; \
211 uint8 *_bytes = (uint8 *)(bytes); \
214 *_bytes++ = _val & 0xff; \
221 uint8 *_bytes = (uint8 *)(bytes); \
222 _bytes[0] = _val >> 8; \
223 _bytes[1] = _val & 0xff; \
228 uint8 *_bytes = (uint8 *)(bytes); \
229 _bytes[0] = _val >> 24; \
230 _bytes[1] = (_val >> 16) & 0xff; \
231 _bytes[2] = (_val >> 8) & 0xff; \
232 _bytes[3] = _val & 0xff; \
236 const uint8 *_bytes = (const uint8 *)(bytes); \
237 _LTOH16_UA(_bytes); \
241 const uint8 *_bytes = (const uint8 *)(bytes); \
242 _LTOH32_UA(_bytes); \
246 const uint8 *_bytes = (const uint8 *)(bytes); \
247 _LTOH64_UA(_bytes); \
251 const uint8 *_bytes = (const uint8 *)(bytes); \
252 _NTOH16_UA(_bytes); \
256 const uint8 *_bytes = (const uint8 *)(bytes); \
257 _NTOH32_UA(_bytes); \
261 const uint8 *_bytes = (const uint8 *)(bytes); \
262 _NTOH64_UA(_bytes); \