Home
last modified time | relevance | path

Searched refs:__uint64_t (Results 1 – 25 of 28) sorted by relevance

12

/dragonfly/sys/cpu/x86_64/include/
H A Dcpumask.h53 __uint64_t ary[4];
59 (__uint64_t)-1, \
60 (__uint64_t)-1, \
61 (__uint64_t)-1 } }
130 (mask).ary[0] = (__uint64_t)-1; \
131 (mask).ary[1] = (__uint64_t)-1; \
132 (mask).ary[2] = (__uint64_t)-1; \
133 (mask).ary[3] = (__uint64_t)-1; \
148 (mask).ary[0] = (__uint64_t)-1; \
153 (mask).ary[0] = (__uint64_t)-1; \
[all …]
H A Dtypes.h42 typedef __uint64_t vm_pindex_t; /* physical page index */
43 typedef __uint64_t vm_spindex_t; /* physical page index (signed) */
45 typedef __uint64_t vm_poff_t; /* physical offset */
46 typedef __uint64_t vm_paddr_t; /* physical addr (same as vm_poff_t) */
H A Dstdint.h63 typedef unsigned long __uint64_t; typedef
68 typedef unsigned long long __uint64_t; typedef
89 typedef __uint64_t __uintmax_t;
106 typedef __uint64_t __uint_fast64_t;
110 typedef __uint64_t __uint_least64_t;
H A Dendian.h103 __extension__ ({ __uint64_t __X = (x); \
112 ((x << 8) & ((__uint64_t)0xff << 32)) | \
113 ((x << 24) & ((__uint64_t)0xff << 40)) | \
114 ((x << 40) & ((__uint64_t)0xff << 48)) | \
152 static __inline __always_inline __uint64_t
153 __bswap64(__uint64_t _x) in __bswap64()
H A Dpmap.h55 typedef __uint64_t pml4_entry_t;
56 typedef __uint64_t pdp_entry_t;
57 typedef __uint64_t pd_entry_t;
58 typedef __uint64_t pt_entry_t;
/dragonfly/sys/sys/
H A Dendian.h67 #define htole64(x) ((__uint64_t)(x))
74 #define le64toh(x) ((__uint64_t)(x))
78 #define htobe64(x) ((__uint64_t)(x))
85 #define be64toh(x) ((__uint64_t)(x))
109 static __inline __uint64_t
114 return (((__uint64_t)be32dec(p) << 32) | be32dec(p + 4)); in be64dec()
133 static __inline __uint64_t
138 return (((__uint64_t)le32dec(p + 4) << 32) | le32dec(p)); in le64dec()
162 be64enc(void *pp, __uint64_t u) in be64enc()
191 le64enc(void *pp, __uint64_t u) in le64enc()
H A Dstatvfs.h42 typedef __uint64_t fsblkcnt_t; /* filesystem block count */
46 typedef __uint64_t fsfilcnt_t; /* filesystem file count */
81 __uint64_t f_syncreads; /* count of sync reads since mount */
82 __uint64_t f_syncwrites; /* count of sync writes since mount */
84 __uint64_t f_asyncreads; /* count of async reads since mount */
85 __uint64_t f_asyncwrites; /* count of async writes since mount */
H A Dtypes.h62 typedef __uint64_t u_int64_t;
63 typedef __uint64_t u_quad_t; /* quads */
88 typedef __uint64_t fsblkcnt_t; /* filesystem block count */
92 typedef __uint64_t fsfilcnt_t; /* filesystem file count */
112 typedef __uint64_t ino_t; /* inode number */
163 typedef __uint64_t uoff_t; /* uio offset */
H A Dresource.h125 #define RLIM_INFINITY ((rlim_t)(((__uint64_t)1 << 63) - 1)) /* no limit */
156 __uint64_t ldavg[3]; /* 64-bits to avoid overflow */
H A D_malloc.h75 __uint64_t bmap[(KMALLOC_SLAB_MAXOBJS + 63) / 64];
151 __uint64_t ks_unused0;
H A Dthread.h277 __uint64_t td_uticks; /* Statclock hits in user mode (uS) */
278 __uint64_t td_sticks; /* Statclock hits in system mode (uS) */
279 __uint64_t td_iticks; /* Statclock hits processing intr (uS) */
H A Dstdint.h82 typedef __uint64_t uint64_t;
H A Ddirent.h60 typedef __uint64_t ino_t; /* inode number */
H A Djail.h90 typedef __uint64_t prison_cap_t;
H A Dsystimer.h51 typedef __uint64_t sysclock_t;
H A Dconf.h69 __uint64_t si_inode;
H A Dstat.h71 typedef __uint64_t ino_t; /* inode number */
H A Dcaps.h45 typedef __uint64_t __syscapelm_t;
/dragonfly/include/
H A Ddisktab.h59 __uint64_t d_media_size;
60 __uint64_t d_media_blocks;
91 __uint64_t p_offset; /* offset, in sectors */
92 __uint64_t p_size; /* #sectors in partition */
H A Dstdint.h50 typedef __uint64_t uint64_t;
H A Dstdlib.h328 __uint64_t
/dragonfly/sys/dev/misc/evdev/
H A Dfreebsd-bitstring.h100 static __inline __uint64_t
101 __bitcount64(__uint64_t _x) in __bitcount64()
115 static __inline __uint64_t
116 __bitcount64(__uint64_t _x) in __bitcount64()
/dragonfly/lib/libc/gen/
H A Dgetloadavg.c56 nelem = MIN(nelem, sizeof(loadinfo.ldavg) / sizeof(__uint64_t)); in getloadavg()
/dragonfly/lib/libkvm/
H A Dkvm_getloadavg.c92 nelem = MIN((size_t)nelem, sizeof(loadinfo.ldavg) / sizeof(__uint64_t)); in kvm_getloadavg()
/dragonfly/contrib/gdb-7/include/gdb/
H A Dfileio.h102 typedef __uint64_t fio_ulong_t;

12