Searched refs:__uint64_t (Results 1 - 25 of 54) sorted by relevance

123

/freebsd-9.3-release/sys/sparc64/include/
H A Dendian.h78 #define __bswap64_const(x) ((((__uint64_t)(x) >> 56) & 0xff) | \
79 (((__uint64_t)(x) >> 40) & 0xff00) | \
80 (((__uint64_t)(x) >> 24) & 0xff0000) | \
81 (((__uint64_t)(x) >> 8) & 0xff000000) | \
82 (((__uint64_t)(x) << 8) & ((__uint64_t)0xff << 32)) | \
83 (((__uint64_t)(x) << 24) & ((__uint64_t)0xff << 40)) | \
84 (((__uint64_t)(x) << 40) & ((__uint64_t)
[all...]
H A D_types.h52 typedef unsigned long __uint64_t; typedef
75 typedef __uint64_t __size_t; /* sizeof() */
78 typedef __uint64_t __uintfptr_t;
79 typedef __uint64_t __uintmax_t;
80 typedef __uint64_t __uintptr_t;
84 typedef __uint64_t __uint_fast64_t;
88 typedef __uint64_t __uint_least64_t;
89 typedef __uint64_t __u_register_t;
90 typedef __uint64_t __vm_offset_t;
92 typedef __uint64_t __vm_paddr_
[all...]
/freebsd-9.3-release/sys/ia64/include/
H A D_types.h56 typedef unsigned long __uint64_t; typedef
79 typedef __uint64_t __size_t; /* sizeof() */
82 typedef __uint64_t __uintfptr_t;
83 typedef __uint64_t __uintmax_t;
84 typedef __uint64_t __uintptr_t;
88 typedef __uint64_t __uint_fast64_t;
92 typedef __uint64_t __uint_least64_t;
93 typedef __uint64_t __u_register_t;
94 typedef __uint64_t __vm_offset_t;
96 typedef __uint64_t __vm_paddr_
[all...]
H A Dendian.h69 static __inline __uint64_t
70 __bswap64(__uint64_t _x)
72 __uint64_t __r;
/freebsd-9.3-release/sys/x86/include/
H A D_types.h59 typedef unsigned long __uint64_t; typedef
70 typedef unsigned long long __uint64_t; typedef
104 typedef __uint64_t __size_t; /* sizeof() */
107 typedef __uint64_t __uintfptr_t;
108 typedef __uint64_t __uintptr_t;
119 typedef __uint64_t __uintmax_t;
123 typedef __uint64_t __uint_fast64_t;
127 typedef __uint64_t __uint_least64_t;
129 typedef __uint64_t __u_register_t;
130 typedef __uint64_t __vm_offset_
[all...]
/freebsd-9.3-release/sys/mips/include/
H A D_types.h58 typedef unsigned long __uint64_t; typedef
69 typedef unsigned long long __uint64_t; typedef
106 typedef __uint64_t __size_t;
108 typedef __uint64_t __uintfptr_t;
109 typedef __uint64_t __uintptr_t;
119 typedef __uint64_t __uintmax_t;
123 typedef __uint64_t __uint_fast64_t;
127 typedef __uint64_t __uint_least64_t;
129 typedef __uint64_t __u_register_t;
134 typedef __uint64_t __vm_offset_
[all...]
H A Dfls64.h37 fls64(__uint64_t mask)
H A Dendian.h82 (((x) << 8) & ((__uint64_t)0xff << 32)) | \
83 (((x) << 24) & ((__uint64_t)0xff << 40)) | \
84 (((x) << 40) & ((__uint64_t)0xff << 48)) | (((x) << 56)))
101 static __inline __uint64_t
102 __bswap64_var(__uint64_t _x)
106 ((_x >> 8) & 0xff000000) | ((_x << 8) & ((__uint64_t)0xff << 32)) |
107 ((_x << 24) & ((__uint64_t)0xff << 40)) |
108 ((_x << 40) & ((__uint64_t)0xff << 48)) | ((_x << 56)));
115 #define __bswap64(x) ((__uint64_t)(__is_constant((x)) ? \
116 __bswap64_const((__uint64_t)(
[all...]
/freebsd-9.3-release/sys/powerpc/include/
H A D_types.h57 typedef unsigned long __uint64_t; typedef
68 typedef unsigned long long __uint64_t; typedef
99 typedef __uint64_t __size_t; /* sizeof() */
102 typedef __uint64_t __uintfptr_t;
103 typedef __uint64_t __uintptr_t;
114 typedef __uint64_t __uintmax_t;
118 typedef __uint64_t __uint_fast64_t;
122 typedef __uint64_t __uint_least64_t;
124 typedef __uint64_t __u_register_t;
125 typedef __uint64_t __vm_offset_
[all...]
H A Dendian.h93 #define __bswap64_const(x) ((((__uint64_t)(x) >> 56) & 0xff) | \
94 (((__uint64_t)(x) >> 40) & 0xff00) | \
95 (((__uint64_t)(x) >> 24) & 0xff0000) | \
96 (((__uint64_t)(x) >> 8) & 0xff000000) | \
97 (((__uint64_t)(x) << 8) & ((__uint64_t)0xff << 32)) | \
98 (((__uint64_t)(x) << 24) & ((__uint64_t)0xff << 40)) | \
99 (((__uint64_t)(x) << 40) & ((__uint64_t)
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_bit.h34 static inline __uint64_t xfs_mask64hi(int n)
36 return (__uint64_t)-1 << (64 - (n));
44 static inline __uint64_t xfs_mask64lo(int n)
46 return ((__uint64_t)1 << (n)) - 1;
53 extern int xfs_lowbit64(__uint64_t v);
56 extern int xfs_highbit64(__uint64_t);
H A Dxfs_types.h42 typedef unsigned long long int __uint64_t; typedef
63 typedef __uint64_t __psunsigned_t;
76 typedef __uint64_t xfs_ufsize_t; /* unsigned bytes in a file */
93 typedef __uint64_t xfs_dfsbno_t; /* blockno in filesystem (agno|agbno) */
94 typedef __uint64_t xfs_drfsbno_t; /* blockno in filesystem (raw) */
95 typedef __uint64_t xfs_drtbno_t; /* extent (block) in realtime area */
96 typedef __uint64_t xfs_dfiloff_t; /* block number in a file */
97 typedef __uint64_t xfs_dfilblks_t; /* number of blocks in a file */
103 typedef __uint64_t xfs_fsblock_t; /* blockno in filesystem (agno|agbno) */
104 typedef __uint64_t xfs_rfsblock_
[all...]
H A Dxfs_extfree_item.h38 __uint64_t efi_id; /* efi identifier */
51 __uint64_t efd_efi_id; /* id of corresponding efi */
H A Dxfs_fsops.h25 extern int xfs_reserve_blocks(xfs_mount_t *mp, __uint64_t *inval,
H A Dxfs_cap.h24 typedef __uint64_t xfs_cap_value_t;
/freebsd-9.3-release/sys/arm/include/
H A D_types.h64 typedef unsigned long long __uint64_t; typedef
91 typedef __uint64_t __uintmax_t;
96 typedef __uint64_t __uint_fast64_t;
100 typedef __uint64_t __uint_least64_t;
105 typedef __uint64_t __vm_pindex_t;
H A Dendian.h75 static __inline __uint64_t
76 __bswap64(__uint64_t _x)
80 ((_x >> 8) & 0xff000000) | ((_x << 8) & ((__uint64_t)0xff << 32)) |
81 ((_x << 24) & ((__uint64_t)0xff << 40)) |
82 ((_x << 40) & ((__uint64_t)0xff << 48)) | ((_x << 56)));
/freebsd-9.3-release/sys/sys/
H A D_types.h41 typedef __uint64_t __cap_rights_t; /* capability rights */
43 typedef __uint64_t __fsblkcnt_t;
44 typedef __uint64_t __fsfilcnt_t;
H A D_stdint.h69 typedef __uint64_t uint64_t;
H A Dtypes.h68 typedef __uint64_t u_int64_t;
70 typedef __uint64_t u_quad_t; /* quads (deprecated) */
260 typedef __uint64_t uoff_t;
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/support/
H A Duuid.h41 __uint64_t uuid_hash64(uuid_t *uuid);
H A Duuid.c113 __uint64_t
116 __uint64_t *sp = (__uint64_t *)uuid;
/freebsd-9.3-release/sys/amd64/include/
H A Dendian.h90 static __inline __uint64_t
91 __bswap64_var(__uint64_t _x)
115 __bswap64_const((__uint64_t)(_x)) : __bswap64_var(_x))
/freebsd-9.3-release/sys/i386/include/
H A Dendian.h90 static __inline __uint64_t
91 __bswap64_var(__uint64_t __x)
115 __bswap64_const((__uint64_t)(_x)) : __bswap64_var(_x))
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_stats.h134 __uint64_t xs_xstrat_bytes;
135 __uint64_t xs_write_bytes;
136 __uint64_t xs_read_bytes;

Completed in 124 milliseconds

123