Home
last modified time | relevance | path

Searched refs:__bswap32 (Results 1 – 8 of 8) sorted by relevance

/f-stack/freebsd/arm64/include/
H A Dendian.h57 #define __ntohl(x) (__bswap32(x))
59 #define __htonl(x) (__bswap32(x))
112 #define __bswap32(x) \ macro
119 #define __bswap32(x) __bswap32_var(x) macro
/f-stack/freebsd/x86/include/
H A Dendian.h69 #define __bswap32(x) __builtin_bswap32(x) macro
72 #define __htonl(x) __bswap32(x)
74 #define __ntohl(x) __bswap32(x)
/f-stack/freebsd/arm/include/
H A Dendian.h71 #define __ntohl(x) (__bswap32(x))
73 #define __htonl(x) (__bswap32(x))
132 #define __bswap32(x) \ macro
139 #define __bswap32(x) __bswap32_var(x) macro
/f-stack/freebsd/mips/include/
H A Dendian.h115 #define __bswap32(x) ((__uint32_t)(__is_constant((x)) ? \ macro
136 #define __ntohl(x) (__bswap32((x)))
138 #define __htonl(x) (__bswap32((x)))
/f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_xmit_ds.c188 ds->ds_info = __bswap32(ds->ds_info);
189 ds->status1 = __bswap32(ds->status1);
190 ds->status2 = __bswap32(ds->status2);
191 ds->status3 = __bswap32(ds->status3);
192 ds->status4 = __bswap32(ds->status4);
193 ds->status5 = __bswap32(ds->status5);
194 ds->status6 = __bswap32(ds->status6);
195 ds->status7 = __bswap32(ds->status7);
196 ds->status8 = __bswap32(ds->status8);
849 last_ads->ds_ctl13 = __bswap32(ads->ds_ctl13); in ar9300_set_11n_rate_scenario()
[all …]
H A Dar9300_eeprom.c4355 dword = __bswap32(eep->base_eep_header.swreg); in ar9300_swap_eeprom()
4358 dword = __bswap32(eep->modal_header_2g.ant_ctrl_common); in ar9300_swap_eeprom()
4361 dword = __bswap32(eep->modal_header_2g.ant_ctrl_common2); in ar9300_swap_eeprom()
4364 dword = __bswap32(eep->modal_header_2g.paprd_rate_mask_ht20); in ar9300_swap_eeprom()
4367 dword = __bswap32(eep->modal_header_2g.paprd_rate_mask_ht40); in ar9300_swap_eeprom()
4370 dword = __bswap32(eep->modal_header_5g.ant_ctrl_common); in ar9300_swap_eeprom()
4373 dword = __bswap32(eep->modal_header_5g.ant_ctrl_common2); in ar9300_swap_eeprom()
4376 dword = __bswap32(eep->modal_header_5g.paprd_rate_mask_ht20); in ar9300_swap_eeprom()
4379 dword = __bswap32(eep->modal_header_5g.paprd_rate_mask_ht40); in ar9300_swap_eeprom()
/f-stack/freebsd/sys/
H A Dkerneldump.h49 #define dtoh32(x) __bswap32(x)
51 #define htod32(x) __bswap32(x)
H A Dendian.h62 #define bswap32(x) __bswap32(x)