Lines Matching refs:_bytes
228 uint8 *_bytes = (uint8 *)(bytes); \
229 _bytes[0] = _val & 0xff; \
230 _bytes[1] = _val >> 8; \
235 uint8 *_bytes = (uint8 *)(bytes); \
236 _bytes[0] = _val & 0xff; \
237 _bytes[1] = (_val >> 8) & 0xff; \
238 _bytes[2] = (_val >> 16) & 0xff; \
239 _bytes[3] = _val >> 24; \
244 uint8 *_bytes = (uint8 *)(bytes); \
247 *_bytes++ = _val & 0xff; \
254 uint8 *_bytes = (uint8 *)(bytes); \
255 _bytes[0] = _val >> 8; \
256 _bytes[1] = _val & 0xff; \
261 uint8 *_bytes = (uint8 *)(bytes); \
262 _bytes[0] = _val >> 24; \
263 _bytes[1] = (_val >> 16) & 0xff; \
264 _bytes[2] = (_val >> 8) & 0xff; \
265 _bytes[3] = _val & 0xff; \
269 const uint8 *_bytes = (const uint8 *)(bytes); \
270 _LTOH16_UA(_bytes); \
274 const uint8 *_bytes = (const uint8 *)(bytes); \
275 _LTOH32_UA(_bytes); \
279 const uint8 *_bytes = (const uint8 *)(bytes); \
280 _LTOH64_UA(_bytes); \
284 const uint8 *_bytes = (const uint8 *)(bytes); \
285 _NTOH16_UA(_bytes); \
289 const uint8 *_bytes = (const uint8 *)(bytes); \
290 _NTOH32_UA(_bytes); \
294 const uint8 *_bytes = (const uint8 *)(bytes); \
295 _NTOH64_UA(_bytes); \