• Home
  • Raw
  • Download

Lines Matching refs:bytes

121 #define htol16_ua_store(val, bytes) ({ \  argument
123 uint8 *_bytes = (uint8 *)(bytes); \
128 #define htol32_ua_store(val, bytes) ({ \ argument
130 uint8 *_bytes = (uint8 *)(bytes); \
137 #define hton16_ua_store(val, bytes) ({ \ argument
139 uint8 *_bytes = (uint8 *)(bytes); \
144 #define hton32_ua_store(val, bytes) ({ \ argument
146 uint8 *_bytes = (uint8 *)(bytes); \
153 #define ltoh16_ua(bytes) ({ \ argument
154 const uint8 *_bytes = (const uint8 *)(bytes); \
158 #define ltoh32_ua(bytes) ({ \ argument
159 const uint8 *_bytes = (const uint8 *)(bytes); \
163 #define ntoh16_ua(bytes) ({ \ argument
164 const uint8 *_bytes = (const uint8 *)(bytes); \
168 #define ntoh32_ua(bytes) ({ \ argument
169 const uint8 *_bytes = (const uint8 *)(bytes); \
210 htol16_ua_store(uint16 val, uint8 *bytes) in htol16_ua_store() argument
212 bytes[0] = val & 0xff; in htol16_ua_store()
213 bytes[1] = val >> 8; in htol16_ua_store()
218 htol32_ua_store(uint32 val, uint8 *bytes) in htol32_ua_store() argument
220 bytes[0] = val & 0xff; in htol32_ua_store()
221 bytes[1] = (val >> 8) & 0xff; in htol32_ua_store()
222 bytes[2] = (val >> 16) & 0xff; in htol32_ua_store()
223 bytes[3] = val >> 24; in htol32_ua_store()
228 hton16_ua_store(uint16 val, uint8 *bytes) in hton16_ua_store() argument
230 bytes[0] = val >> 8; in hton16_ua_store()
231 bytes[1] = val & 0xff; in hton16_ua_store()
236 hton32_ua_store(uint32 val, uint8 *bytes) in hton32_ua_store() argument
238 bytes[0] = val >> 24; in hton32_ua_store()
239 bytes[1] = (val >> 16) & 0xff; in hton32_ua_store()
240 bytes[2] = (val >> 8) & 0xff; in hton32_ua_store()
241 bytes[3] = val & 0xff; in hton32_ua_store()
246 ltoh16_ua(const void *bytes) in ltoh16_ua() argument
248 return _LTOH16_UA((const uint8 *)bytes); in ltoh16_ua()
253 ltoh32_ua(const void *bytes) in ltoh32_ua() argument
255 return _LTOH32_UA((const uint8 *)bytes); in ltoh32_ua()
260 ntoh16_ua(const void *bytes) in ntoh16_ua() argument
262 return _NTOH16_UA((const uint8 *)bytes); in ntoh16_ua()
267 ntoh32_ua(const void *bytes) in ntoh32_ua() argument
269 return _NTOH32_UA((const uint8 *)bytes); in ntoh32_ua()