Lines Matching refs:bytes

125 #define htol16_ua_store(val, bytes) ({ \  argument
127 uint8 *_bytes = (uint8 *)(bytes); \
132 #define htol32_ua_store(val, bytes) ({ \ argument
134 uint8 *_bytes = (uint8 *)(bytes); \
141 #define hton16_ua_store(val, bytes) ({ \ argument
143 uint8 *_bytes = (uint8 *)(bytes); \
148 #define hton32_ua_store(val, bytes) ({ \ argument
150 uint8 *_bytes = (uint8 *)(bytes); \
157 #define ltoh16_ua(bytes) ({ \ argument
158 const uint8 *_bytes = (const uint8 *)(bytes); \
162 #define ltoh32_ua(bytes) ({ \ argument
163 const uint8 *_bytes = (const uint8 *)(bytes); \
167 #define ntoh16_ua(bytes) ({ \ argument
168 const uint8 *_bytes = (const uint8 *)(bytes); \
172 #define ntoh32_ua(bytes) ({ \ argument
173 const uint8 *_bytes = (const uint8 *)(bytes); \
216 htol16_ua_store(uint16 val, uint8 *bytes) in htol16_ua_store() argument
218 bytes[0] = val & 0xff; in htol16_ua_store()
219 bytes[1] = val >> 8; in htol16_ua_store()
226 htol32_ua_store(uint32 val, uint8 *bytes) in htol32_ua_store() argument
228 bytes[0] = val & 0xff; in htol32_ua_store()
229 bytes[1] = (val >> 8) & 0xff; in htol32_ua_store()
230 bytes[2] = (val >> 16) & 0xff; in htol32_ua_store()
231 bytes[3] = val >> 24; in htol32_ua_store()
238 hton16_ua_store(uint16 val, uint8 *bytes) in hton16_ua_store() argument
240 bytes[0] = val >> 8; in hton16_ua_store()
241 bytes[1] = val & 0xff; in hton16_ua_store()
248 hton32_ua_store(uint32 val, uint8 *bytes) in hton32_ua_store() argument
250 bytes[0] = val >> 24; in hton32_ua_store()
251 bytes[1] = (val >> 16) & 0xff; in hton32_ua_store()
252 bytes[2] = (val >> 8) & 0xff; in hton32_ua_store()
253 bytes[3] = val & 0xff; in hton32_ua_store()
260 ltoh16_ua(const void *bytes) in ltoh16_ua() argument
262 return _LTOH16_UA((const uint8 *)bytes); in ltoh16_ua()
269 ltoh32_ua(const void *bytes) in ltoh32_ua() argument
271 return _LTOH32_UA((const uint8 *)bytes); in ltoh32_ua()
278 ntoh16_ua(const void *bytes) in ntoh16_ua() argument
280 return _NTOH16_UA((const uint8 *)bytes); in ntoh16_ua()
287 ntoh32_ua(const void *bytes) in ntoh32_ua() argument
289 return _NTOH32_UA((const uint8 *)bytes); in ntoh32_ua()