Symbol: __bswap16
include/byteswap.h
33
#define __bswap_16(x) __bswap16(x)
include/byteswap.h
37
#define bswap_16(x) __bswap16(x)
sys/dev/ath/ath_hal/ah_eeprom_9287.c
161
word = __bswap16(ee->ee_base.baseEepHeader.length);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
164
word = __bswap16(ee->ee_base.baseEepHeader.checksum);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
167
word = __bswap16(ee->ee_base.baseEepHeader.version);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
170
word = __bswap16(ee->ee_base.baseEepHeader.regDmn[0]);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
173
word = __bswap16(ee->ee_base.baseEepHeader.regDmn[1]);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
176
word = __bswap16(ee->ee_base.baseEepHeader.rfSilent);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
179
word = __bswap16(ee->ee_base.baseEepHeader.blueToothOptions);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
182
word = __bswap16(ee->ee_base.baseEepHeader.deviceCap);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
199
word = __bswap16(pModal->spurChans[i].spurChan);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
343
eep_data[w] = __bswap16(eep_data[w]);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
354
len = __bswap16(ee->ee_base.baseEepHeader.length);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
199
word = __bswap16(ee->baseEepHeader.length);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
202
word = __bswap16(ee->baseEepHeader.checksum);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
205
word = __bswap16(ee->baseEepHeader.version);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
208
word = __bswap16(ee->baseEepHeader.regDmn[0]);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
211
word = __bswap16(ee->baseEepHeader.regDmn[1]);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
214
word = __bswap16(ee->baseEepHeader.rfSilent);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
217
word = __bswap16(ee->baseEepHeader.blueToothOptions);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
220
word = __bswap16(ee->baseEepHeader.deviceCap);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
236
word = __bswap16(pModal->xpaBiasLvlFreq[i]);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
240
word = __bswap16(pModal->spurChans[i].spurChan);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
383
eep_data[w] = __bswap16(eep_data[w]);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
394
len = __bswap16(ee->ee_base.baseEepHeader.length);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
155
word = __bswap16(ee->baseEepHeader.length);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
158
word = __bswap16(ee->baseEepHeader.checksum);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
161
word = __bswap16(ee->baseEepHeader.version);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
164
word = __bswap16(ee->baseEepHeader.regDmn[0]);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
167
word = __bswap16(ee->baseEepHeader.regDmn[1]);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
170
word = __bswap16(ee->baseEepHeader.rfSilent);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
173
word = __bswap16(ee->baseEepHeader.blueToothOptions);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
176
word = __bswap16(ee->baseEepHeader.deviceCap);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
192
word = __bswap16(pModal->spurChans[i].spurChan);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
332
eep_data[w] = __bswap16(eep_data[w]);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
343
len = __bswap16(ee->ee_base.baseEepHeader.length);
sys/sys/_endian.h
106
#define htobe16(x) __bswap16((x))
sys/sys/_endian.h
113
#define be16toh(x) __bswap16((x))
sys/sys/_endian.h
123
#define htole16(x) __bswap16((x))
sys/sys/_endian.h
130
#define le16toh(x) __bswap16((x))
sys/sys/_endian.h
91
#define __ntohs(x) (__bswap16(x))
sys/sys/_endian.h
93
#define __htons(x) (__bswap16(x))
sys/sys/endian.h
68
#define bswap16(x) __bswap16(x)
tests/include/endian_test.c
122
ATF_REQUIRE(O16(0x1234) == __bswap16(0x1234));
tests/include/endian_test.c
91
ATF_REQUIRE(O16(0x1234) == __bswap16(0x1234));
tests/include/sys_endian_test.c
119
ATF_REQUIRE(O16(0x1234) == __bswap16(0x1234));
tests/include/sys_endian_test.c
88
ATF_REQUIRE(O16(0x1234) == __bswap16(0x1234));