Symbol: bswap16
crypto/heimdal/lib/krb5/store.c
467
value = bswap16(value);
crypto/heimdal/lib/krb5/store.c
515
*value = bswap16(*value);
crypto/krb5/src/include/k5-platform.h
550
# define SWAP16 bswap16
lib/libc/string/swab.c
25
tmp = bswap16(tmp);
sys/compat/linuxkpi/common/include/asm/byteorder.h
118
#define swab16(x) bswap16(x)
sys/dev/cxgbe/osdep.h
95
#define swab16(x) bswap16(x)
sys/dev/isp/isp_freebsd.h
539
#define ISP_IOXPUT_16(isp, s, d) *(d) = bswap16(s)
sys/dev/isp/isp_freebsd.h
542
#define ISP_IOXGET_16(isp, s, d) d = bswap16(*((uint16_t *)s))
sys/dev/isp/isp_freebsd.h
544
#define ISP_SWIZZLE_NVRAM_WORD(isp, rp) *rp = bswap16(*rp)
sys/dev/isp/isp_freebsd.h
565
#define ISP_IOZPUT_16(isp, s, d) *(d) = bswap16(s)
sys/dev/isp/isp_freebsd.h
568
#define ISP_IOZGET_16(isp, s, d) d = bswap16(*((uint16_t *)(s)))
sys/dev/isp/isp_freebsd.h
572
#define ISP_SWAP16(isp, s) bswap16(s)
sys/dev/msk/if_msk.c
3133
csum = bswap16(sc_if->msk_csum & 0xFFFF);
sys/dev/nge/if_nge.c
1580
bswap16(extsts & NGE_RXEXTSTS_VTCI);
sys/dev/nge/if_nge.c
1938
bswap16(m->m_pkthdr.ether_vtag));
sys/dev/re/if_re.c
2383
bswap16((rxvlan & RL_RDESC_VLANCTL_DATA));
sys/dev/re/if_re.c
2877
vlanctl |= bswap16((*m_head)->m_pkthdr.ether_vtag) |
sys/dev/sfxge/sfxge_tx.c
208
efx_tx_qdesc_vlantci_create(txq->common, bswap16(this_tag), desc);
sys/dev/usb/net/if_ure.c
769
bswap16(pktcsum &
sys/dev/usb/net/if_ure.c
875
bswap16(m->m_pkthdr.ether_vtag &
sys/dev/vge/if_vge.c
1569
bswap16(rxctl & VGE_RDCTL_VLANID);
tests/include/byteswap_test.c
44
#ifdef bswap16
tests/include/endian_test.c
40
#ifdef bswap16
tests/include/sys_endian_test.c
40
#ifndef bswap16
tools/build/cross-build/include/mac/sys/endian.h
57
#define htobe16(x) bswap16((x))
tools/build/cross-build/include/mac/sys/endian.h
64
#define be16toh(x) bswap16((x))
tools/build/cross-build/include/mac/sys/endian.h
74
#define htole16(x) bswap16((x))
tools/build/cross-build/include/mac/sys/endian.h
81
#define le16toh(x) bswap16((x))
usr.sbin/makefs/cd9660/cd9660_conversion.c
126
be = bswap16(dw);
usr.sbin/makefs/cd9660/cd9660_conversion.c
130
le = bswap16(dw);
usr.sbin/makefs/cd9660/cd9660_conversion.c
59
w = bswap16(w);
usr.sbin/makefs/cd9660/cd9660_conversion.c
78
w = bswap16(w);
usr.sbin/makefs/ffs/ffs_bswap.c
124
n->di_mode = bswap16(o->di_mode);
usr.sbin/makefs/ffs/ffs_bswap.c
125
n->di_nlink = bswap16(o->di_nlink);
usr.sbin/makefs/ffs/ffs_bswap.c
145
n->di_mode = bswap16(o->di_mode);
usr.sbin/makefs/ffs/ffs_bswap.c
146
n->di_nlink = bswap16(o->di_nlink);
usr.sbin/makefs/ffs/ffs_bswap.c
206
n->cg_old_ncyl = bswap16(o->cg_old_ncyl);
usr.sbin/makefs/ffs/ffs_bswap.c
207
n->cg_old_niblk = bswap16(o->cg_old_niblk);
usr.sbin/makefs/ffs/ffs_bswap.c
252
n16[i] = bswap16(o16[i]);
usr.sbin/makefs/ffs/ufs_bswap.h
56
return ((ns) ? bswap16(a) : (a));
usr.sbin/virtual_oss/virtual_oss/httpd.c
212
((uint16_t *)iov[1].iov_base)[x] = bswap16(((uint16_t *)ptr)[x]);