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

123

/freebsd-13-stable/sys/sys/
H A D_umtx.h40 __uint32_t m_flags; /* Flags of the mutex */
41 __uint32_t m_ceilings[2]; /* Priority protect ceiling */
44 __uint32_t m_pad;
46 __uint32_t m_spare[2];
50 volatile __uint32_t c_has_waiters; /* Has waiters in kernel */
51 __uint32_t c_flags; /* Flags of the condition variable */
52 __uint32_t c_clockid; /* Clock id */
53 __uint32_t c_spare[1]; /* Spare space */
58 __uint32_t rw_flags;
59 __uint32_t rw_blocked_reader
[all...]
H A Dprng.h14 __uint32_t prng32(void);
15 __uint32_t prng32_bounded(__uint32_t bound);
H A D_types.h43 typedef __uint32_t __fflags_t; /* file flags */
46 typedef __uint32_t __gid_t;
62 typedef __uint32_t __socklen_t;
66 typedef __uint32_t __uid_t;
115 typedef __uint32_t __fixpt_t; /* fixed point number */
H A D_sigset.h54 __uint32_t __bits[_SIG_WORDS];
/freebsd-13-stable/sys/arm/include/
H A Dptrace.h15 __uint32_t vfp_scr;
16 __uint32_t vfp_pad0;
H A D_types.h56 typedef unsigned int __uint32_t; typedef
71 typedef __uint32_t __clock_t; /* clock()... */
91 typedef __uint32_t __size_t; /* sizeof() */
94 typedef __uint32_t __uintfptr_t;
96 typedef __uint32_t __uintptr_t;
97 typedef __uint32_t __uint_fast8_t;
98 typedef __uint32_t __uint_fast16_t;
99 typedef __uint32_t __uint_fast32_t;
103 typedef __uint32_t __uint_least32_t;
105 typedef __uint32_t __u_register_
[all...]
H A Dendian.h64 #define __ntohl(x) ((__uint32_t)(x))
66 #define __htonl(x) ((__uint32_t)(x))
87 static __inline __uint32_t
88 __bswap32_var(__uint32_t v)
90 __uint32_t t1;
104 __uint32_t ret = v & 0xffff;
133 ((__uint32_t)(__builtin_constant_p(x) ? \
/freebsd-13-stable/sys/powerpc/include/
H A D_types.h56 typedef unsigned int __uint32_t; typedef
76 typedef __uint32_t __clock_t; /* clock()... */
109 typedef __uint32_t __size_t; /* sizeof() */
117 typedef __uint32_t __uintfptr_t;
118 typedef __uint32_t __uintptr_t;
121 typedef __uint32_t __uint_fast8_t;
122 typedef __uint32_t __uint_fast16_t;
123 typedef __uint32_t __uint_fast32_t;
127 typedef __uint32_t __uint_least32_t;
135 typedef __uint32_t __u_register_
[all...]
H A Dendian.h96 #define __bswap32_const(x) ((((__uint32_t)(x) >> 24) & 0xff) | \
97 (((__uint32_t)(x) >> 8) & 0xff00) | \
98 (((__uint32_t)(x)<< 8) & 0xff0000) | \
99 (((__uint32_t)(x) << 24) & 0xff000000))
116 static __inline __uint32_t
117 __bswap32_var(__uint32_t _x)
142 #define __htonl(x) (__bswap32((__uint32_t)(x)))
144 #define __ntohl(x) (__bswap32((__uint32_t)(x)))
147 #define __htonl(x) ((__uint32_t)(x))
149 #define __ntohl(x) ((__uint32_t)(
[all...]
/freebsd-13-stable/sys/x86/include/
H A Dreg.h103 __uint32_t r_fs;
104 __uint32_t r_es;
105 __uint32_t r_ds;
106 __uint32_t r_edi;
107 __uint32_t r_esi;
108 __uint32_t r_ebp;
109 __uint32_t r_isp;
110 __uint32_t r_ebx;
111 __uint32_t r_edx;
112 __uint32_t r_ec
[all...]
H A D_types.h60 typedef unsigned int __uint32_t; typedef
115 typedef __uint32_t __size_t;
118 typedef __uint32_t __uintfptr_t;
119 typedef __uint32_t __uintptr_t;
122 typedef __uint32_t __uint_fast8_t;
123 typedef __uint32_t __uint_fast16_t;
124 typedef __uint32_t __uint_fast32_t;
128 typedef __uint32_t __uint_least32_t;
136 typedef __uint32_t __u_register_t;
137 typedef __uint32_t __vm_offset_
[all...]
/freebsd-13-stable/sys/mips/include/
H A D_types.h57 typedef unsigned int __uint32_t; typedef
117 typedef __uint32_t __size_t; /* sizeof() */
119 typedef __uint32_t __uintfptr_t;
120 typedef __uint32_t __uintptr_t;
124 typedef __uint32_t __uint_fast8_t;
125 typedef __uint32_t __uint_fast16_t;
126 typedef __uint32_t __uint_fast32_t;
130 typedef __uint32_t __uint_least32_t;
135 typedef __uint32_t __u_register_t;
141 typedef __uint32_t __vm_offset_
[all...]
H A Dendian.h95 static __inline __uint32_t
96 __bswap32_var(__uint32_t _x)
115 #define __bswap32(x) ((__uint32_t)(__is_constant((x)) ? \
116 __bswap32_const((__uint32_t)(x)) : __bswap32_var((__uint32_t)(x))))
121 #define __htonl(x) ((__uint32_t)(x))
123 #define __ntohl(x) ((__uint32_t)(x))
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_freebsd.h87 __uint32_t kve_vn_fsid;
96 __uint32_t kve_vn_rdev;
104 __uint32_t p_type;
105 __uint32_t p_offset;
106 __uint32_t p_vaddr;
107 __uint32_t p_paddr;
108 __uint32_t p_filesz;
109 __uint32_t p_memsz;
110 __uint32_t p_flags;
111 __uint32_t p_alig
[all...]
/freebsd-13-stable/sys/arm64/include/
H A Ducontext.h41 __uint32_t gp_spsr;
47 __uint32_t fp_sr;
48 __uint32_t fp_cr;
84 __uint32_t mcv_fpscr;
H A Dendian.h73 static __inline __uint32_t
74 __bswap32_var(__uint32_t v)
76 __uint32_t ret;
87 __uint32_t ret;
113 ((__uint32_t)(__builtin_constant_p(x) ? \
114 __bswap32_constant((__uint32_t)(x)) : \
H A D_types.h50 typedef unsigned int __uint32_t; typedef
83 typedef __uint32_t __uint_fast8_t;
84 typedef __uint32_t __uint_fast16_t;
85 typedef __uint32_t __uint_fast32_t;
89 typedef __uint32_t __uint_least32_t;
/freebsd-13-stable/sys/riscv/include/
H A D_types.h50 typedef unsigned int __uint32_t; typedef
83 typedef __uint32_t __uint_fast8_t;
84 typedef __uint32_t __uint_fast16_t;
85 typedef __uint32_t __uint_fast32_t;
89 typedef __uint32_t __uint_least32_t;
H A Dendian.h79 static __inline __uint32_t
80 __bswap32_var(__uint32_t _x)
90 __uint32_t ret;
115 ((__uint32_t)(__builtin_constant_p(x) ? \
/freebsd-13-stable/lib/libc/gen/
H A Dgen-compat.h54 char *freebsd11_devname(__uint32_t dev, __mode_t type);
55 char *freebsd11_devname_r(__uint32_t dev, __mode_t type, char *buf, int len);
/freebsd-13-stable/lib/libc/iconv/
H A D__iconv.c37 size_t *e, __uint32_t f, size_t *g)
H A Diconv-internal.h35 size_t *, __uint32_t, size_t *);
/freebsd-13-stable/lib/msun/x86/
H A Dfenv.h80 __uint32_t __tag;
86 __uint32_t __control;
87 __uint32_t __status;
88 __uint32_t __tag;
91 __uint32_t __mxcsr;
164 (env).__mxcsr_hi = (__uint32_t)(x) >> 16; \
172 __uint32_t __mxcsr;
192 __uint32_t __mxcsr;
207 __uint32_t __mxcsr;
221 __uint32_t __mxcs
[all...]
/freebsd-13-stable/include/
H A Dsemaphore.h44 __uint32_t _magic;
46 __uint32_t _padding; /* Preserve structure size */
/freebsd-13-stable/sys/compat/freebsd32/
H A Dfreebsd32_ioctl.h39 typedef __uint32_t caddr_t32;

Completed in 172 milliseconds

123