Searched refs:__uint16_t (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-13-stable/sys/powerpc/include/
H A Dendian.h94 #define __bswap16_const(x) ((((__uint16_t)(x) >> 8) & 0xff) | \
95 (((__uint16_t)(x) << 8) & 0xff00))
109 static __inline __uint16_t
110 __bswap16_var(__uint16_t _x)
134 #define __bswap16(x) ((__uint16_t)(__is_constant(x) ? __bswap16_const(x) : \
143 #define __htons(x) (__bswap16((__uint16_t)(x)))
145 #define __ntohs(x) (__bswap16((__uint16_t)(x)))
148 #define __htons(x) ((__uint16_t)(x))
150 #define __ntohs(x) ((__uint16_t)(x))
H A D_types.h54 typedef unsigned short __uint16_t; typedef
126 typedef __uint16_t __uint_least16_t;
/freebsd-13-stable/sys/arm64/include/
H A Dendian.h84 static __inline __uint16_t
85 __bswap16_var(__uint16_t v)
92 return ((__uint16_t)ret);
108 ((__uint16_t)(__builtin_constant_p(x) ? \
109 __bswap16_constant((__uint16_t)(x)) : \
H A D_types.h48 typedef unsigned short __uint16_t; typedef
88 typedef __uint16_t __uint_least16_t;
/freebsd-13-stable/sys/arm/include/
H A Dendian.h65 #define __ntohs(x) ((__uint16_t)(x))
67 #define __htons(x) ((__uint16_t)(x))
101 static __inline __uint16_t
102 __bswap16_var(__uint16_t v)
112 return ((__uint16_t)ret);
128 ((__uint16_t)(__builtin_constant_p(x) ? \
H A D_types.h54 typedef unsigned short __uint16_t; typedef
102 typedef __uint16_t __uint_least16_t;
/freebsd-13-stable/sys/sys/
H A Ddirent.h69 __uint16_t d_reclen; /* length of this record */
72 __uint16_t d_namlen; /* length of string in d_name */
73 __uint16_t d_pad1;
85 __uint16_t d_reclen; /* length of this record */
H A D_stdint.h61 typedef __uint16_t uint16_t;
H A Dparam.h326 __uint16_t htons(__uint16_t);
328 __uint16_t ntohs(__uint16_t);
H A Dstat.h106 __uint16_t st_dev; /* inode's device */
109 __uint16_t st_nlink; /* number of hard links */
110 __uint16_t st_uid; /* user ID of the file's owner */
111 __uint16_t st_gid; /* group ID of the file's group */
112 __uint16_t st_rdev; /* device type */
129 __uint16_t st_nlink; /* number of hard links */
H A Dtypes.h68 typedef __uint16_t u_int16_t;
135 typedef __uint16_t in_port_t;
315 #define __bitcount16(x) __builtin_popcount((__uint16_t)(x))
323 static __inline __uint16_t
324 __bitcount16(__uint16_t _x)
H A D_types.h51 typedef __uint16_t __mode_t; /* permissions */
/freebsd-13-stable/sys/mips/include/
H A Dendian.h88 static __inline __uint16_t
89 __bswap16_var(__uint16_t _x)
113 #define __bswap16(x) ((__uint16_t)(__is_constant((x)) ? \
114 __bswap16_const((__uint16_t)(x)) : __bswap16_var((__uint16_t)(x))))
122 #define __htons(x) ((__uint16_t)(x))
124 #define __ntohs(x) ((__uint16_t)(x))
H A D_types.h55 typedef unsigned short __uint16_t; typedef
129 typedef __uint16_t __uint_least16_t;
/freebsd-13-stable/lib/msun/x86/
H A Dfenv.h42 typedef __uint16_t fexcept_t;
76 __uint16_t __control;
77 __uint16_t __mxcsr_hi;
78 __uint16_t __status;
79 __uint16_t __mxcsr_lo;
115 __uint16_t __control;
136 __uint16_t __control;
165 (env).__mxcsr_lo = (__uint16_t)(x); \
193 __uint16_t __status;
208 __uint16_t __statu
[all...]
/freebsd-13-stable/sys/riscv/include/
H A Dendian.h87 static __inline __uint16_t
88 __bswap16_var(__uint16_t _x)
94 return ((__uint16_t)ret);
110 ((__uint16_t)(__builtin_constant_p(x) ? \
H A D_types.h48 typedef unsigned short __uint16_t; typedef
88 typedef __uint16_t __uint_least16_t;
/freebsd-13-stable/sys/x86/include/
H A Ducontext.h130 __uint16_t mc_fs;
131 __uint16_t mc_gs;
134 __uint16_t mc_es;
135 __uint16_t mc_ds;
H A Dreg.h141 __uint16_t r_fs;
142 __uint16_t r_gs;
144 __uint16_t r_es;
145 __uint16_t r_ds;
H A D_types.h58 typedef unsigned short __uint16_t; typedef
127 typedef __uint16_t __uint_least16_t;
/freebsd-13-stable/lib/msun/amd64/
H A Dfenv.c122 __uint16_t status;
135 __uint16_t control;
152 __uint16_t control;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_freebsd.h97 __uint16_t kve_vn_mode;
98 __uint16_t kve_status;
/freebsd-13-stable/lib/msun/i387/
H A Dfenv.c173 __uint16_t status;
189 __uint16_t control;
211 __uint16_t control;
/freebsd-13-stable/sys/compat/freebsd32/
H A Dfreebsd32.h222 __uint16_t st_dev;
225 __uint16_t st_nlink;
226 __uint16_t st_uid;
227 __uint16_t st_gid;
228 __uint16_t st_rdev;
/freebsd-13-stable/include/arpa/
H A Dinet.h75 typedef __uint16_t uint16_t;

Completed in 272 milliseconds

12