Symbol: bswap64
crypto/krb5/src/include/k5-platform.h
555
# define SWAP64 bswap64
lib/libefivar/uefi-dplib.h
519
#define SwapBytes64(u64) bswap64(u64)
sys/compat/linuxkpi/common/include/asm/byteorder.h
120
#define swab64(x) bswap64(x)
sys/crypto/armv8/armv8_crypto.c
249
H.u[0] = bswap64(H.u[0]);
sys/crypto/armv8/armv8_crypto.c
250
H.u[1] = bswap64(H.u[1]);
sys/crypto/ccp/ccp_hardware.c
1142
t = bswap64(buffer[3]);
sys/crypto/ccp/ccp_hardware.c
1143
buffer[3] = bswap64(buffer[0]);
sys/crypto/ccp/ccp_hardware.c
1146
t = bswap64(buffer[2]);
sys/crypto/ccp/ccp_hardware.c
1147
buffer[2] = bswap64(buffer[1]);
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
47
ctx->gcm.H.u[0] = bswap64(ctx->gcm.H.u[0]);
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
48
ctx->gcm.H.u[1] = bswap64(ctx->gcm.H.u[1]);
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
96
alen = bswap64(alen);
sys/crypto/openssl/arm/ossl_aes_gcm_neon.c
97
clen = bswap64(clen);
sys/crypto/openssl/ossl_aes_gcm.c
169
ctx->gcm.H.u[0] = bswap64(ctx->gcm.H.u[0]);
sys/crypto/openssl/ossl_aes_gcm.c
170
ctx->gcm.H.u[1] = bswap64(ctx->gcm.H.u[1]);
sys/crypto/openssl/ossl_aes_gcm.c
577
alen = bswap64(alen);
sys/crypto/openssl/ossl_aes_gcm.c
578
clen = bswap64(clen);
sys/crypto/skein/skein_port.h
80
#define Skein_Swap64(w64) bswap64(w64)
sys/dev/cxgbe/osdep.h
97
#define swab64(x) bswap64(x)
tests/include/byteswap_test.c
50
#ifdef bswap64
tests/include/endian_test.c
46
#ifdef bswap64
tests/include/sys_endian_test.c
46
#ifndef bswap64
tools/build/cross-build/include/mac/sys/endian.h
59
#define htobe64(x) bswap64((x))
tools/build/cross-build/include/mac/sys/endian.h
66
#define be64toh(x) bswap64((x))
tools/build/cross-build/include/mac/sys/endian.h
76
#define htole64(x) bswap64((x))
tools/build/cross-build/include/mac/sys/endian.h
83
#define le64toh(x) bswap64((x))
usr.bin/script/script.c
517
stamp.scr_len = bswap64(stamp.scr_len); \
usr.bin/script/script.c
518
stamp.scr_sec = bswap64(stamp.scr_sec); \
usr.sbin/makefs/ffs/ffs_bswap.c
108
n->fs_maxfilesize = bswap64(o->fs_maxfilesize);
usr.sbin/makefs/ffs/ffs_bswap.c
109
n->fs_qbmask = bswap64(o->fs_qbmask);
usr.sbin/makefs/ffs/ffs_bswap.c
110
n->fs_qfmask = bswap64(o->fs_qfmask);
usr.sbin/makefs/ffs/ffs_bswap.c
126
n->di_size = bswap64(o->di_size);
usr.sbin/makefs/ffs/ffs_bswap.c
150
n->di_size = bswap64(o->di_size);
usr.sbin/makefs/ffs/ffs_bswap.c
151
n->di_blocks = bswap64(o->di_blocks);
usr.sbin/makefs/ffs/ffs_bswap.c
152
n->di_atime = bswap64(o->di_atime);
usr.sbin/makefs/ffs/ffs_bswap.c
154
n->di_mtime = bswap64(o->di_mtime);
usr.sbin/makefs/ffs/ffs_bswap.c
156
n->di_ctime = bswap64(o->di_ctime);
usr.sbin/makefs/ffs/ffs_bswap.c
158
n->di_birthtime = bswap64(o->di_ctime);
usr.sbin/makefs/ffs/ffs_bswap.c
185
n->cs_ndir = bswap64(o->cs_ndir);
usr.sbin/makefs/ffs/ffs_bswap.c
186
n->cs_nbfree = bswap64(o->cs_nbfree);
usr.sbin/makefs/ffs/ffs_bswap.c
187
n->cs_nifree = bswap64(o->cs_nifree);
usr.sbin/makefs/ffs/ffs_bswap.c
188
n->cs_nffree = bswap64(o->cs_nffree);
usr.sbin/makefs/ffs/ffs_bswap.c
229
n->cg_time = bswap64(o->cg_time);
usr.sbin/makefs/ffs/ffs_bswap.c
78
n->fs_swuid = bswap64(o->fs_swuid);
usr.sbin/makefs/ffs/ffs_bswap.c
87
n->fs_sblockloc = bswap64(o->fs_sblockloc);
usr.sbin/makefs/ffs/ffs_bswap.c
89
n->fs_time = bswap64(o->fs_time);
usr.sbin/makefs/ffs/ffs_bswap.c
90
n->fs_size = bswap64(o->fs_size);
usr.sbin/makefs/ffs/ffs_bswap.c
91
n->fs_dsize = bswap64(o->fs_dsize);
usr.sbin/makefs/ffs/ffs_bswap.c
92
n->fs_csaddr = bswap64(o->fs_csaddr);
usr.sbin/makefs/ffs/ffs_bswap.c
93
n->fs_pendingblocks = bswap64(o->fs_pendingblocks);
usr.sbin/makefs/ffs/ufs_bswap.h
66
return ((ns) ? bswap64(a) : (a));