Searched refs:__int32_t (Results 1 - 17 of 17) sorted by relevance

/xnu-2422.115.4/bsd/sys/_types/
H A D_timeval32.h32 __int32_t tv_sec; /* seconds */
33 __int32_t tv_usec; /* and microseconds */
H A D_key_t.h30 typedef __int32_t key_t; /* IPC key (for Sys V IPC) */
H A D_user32_timeval.h34 __int32_t tv_usec; /* and microseconds */
H A D_user64_timeval.h34 __int32_t tv_usec; /* and microseconds */
H A D_user_timeval.h34 __int32_t tv_usec; /* and microseconds */
H A D_fd_def.h42 #define __DARWIN_NFDBITS (sizeof(__int32_t) * __DARWIN_NBBY) /* bits per mask */
47 __int32_t fds_bits[__DARWIN_howmany(__DARWIN_FD_SETSIZE, __DARWIN_NFDBITS)];
55 return (_p->fds_bits[(unsigned long)_n/__DARWIN_NFDBITS] & ((__int32_t)(1<<((unsigned long)_n % __DARWIN_NFDBITS))));
58 #define __DARWIN_FD_SET(n, p) do { int __fd = (n); ((p)->fds_bits[(unsigned long)__fd/__DARWIN_NFDBITS] |= ((__int32_t)(1<<((unsigned long)__fd % __DARWIN_NFDBITS)))); } while(0)
59 #define __DARWIN_FD_CLR(n, p) do { int __fd = (n); ((p)->fds_bits[(unsigned long)__fd/__DARWIN_NFDBITS] &= ~((__int32_t)(1<<((unsigned long)__fd % __DARWIN_NFDBITS)))); } while(0)
/xnu-2422.115.4/bsd/sys/
H A Dmsg.h123 __int32_t msg_first; /* RESERVED: kernel use only */
124 __int32_t msg_last; /* RESERVED: kernel use only */
131 __int32_t msg_pad1; /* RESERVED: DO NOT USE */
133 __int32_t msg_pad2; /* RESERVED: DO NOT USE */
135 __int32_t msg_pad3; /* RESERVED: DO NOT USE */
136 __int32_t msg_pad4[4]; /* RESERVED: DO NOT USE */
146 __int32_t msg_first; /* RESERVED: kernel use only */
147 __int32_t msg_last; /* RESERVED: kernel use only */
154 __int32_t msg_pad1; /* RESERVED: DO NOT USE */
156 __int32_t msg_pad
[all...]
H A Dsem.h88 __int32_t sem_base; /* 32 bit base ptr for semaphore set */
91 __int32_t sem_pad1; /* RESERVED: DO NOT USE! */
95 __int32_t sem_pad2; /* RESERVED: DO NOT USE! */
96 __int32_t sem_pad3[4]; /* RESERVED: DO NOT USE! */
106 __int32_t sem_base; /* 32 bit base ptr for semaphore set */
109 __int32_t sem_pad1; /* RESERVED: DO NOT USE! */
113 __int32_t sem_pad2; /* RESERVED: DO NOT USE! */
114 __int32_t sem_pad3[4]; /* RESERVED: DO NOT USE! */
H A D_types.h95 typedef __int32_t __darwin_blksize_t; /* preferred block size */
96 typedef __int32_t __darwin_dev_t; /* dev_t */
111 typedef __int32_t __darwin_pid_t; /* [???] process and group IDs */
132 typedef __int32_t __darwin_suseconds_t; /* [???] microseconds */
H A Dsem_internal.h65 __int32_t sem_pad1; /* RESERVED: DO NOT USE! */
69 __int32_t sem_pad2; /* RESERVED: DO NOT USE! */
70 __int32_t sem_pad3[4]; /* RESERVED: DO NOT USE! */
H A Dtypes.h137 static inline __int32_t major(__uint32_t _x)
139 return (__int32_t)(((__uint32_t)_x >> 24) & 0xff);
142 static inline __int32_t minor(__uint32_t _x)
144 return (__int32_t)((_x) & 0xffffff);
185 typedef __int32_t fd_mask;
H A Dstat.h126 __int32_t st_size; /* file size, in bytes */
130 __int32_t st_blksize; /* optimal blocksize for I/O */
131 __int32_t st_blocks; /* blocks allocated for file */
180 __int32_t st_lspare; /* RESERVED: DO NOT USE! */ \
219 __int32_t st_lspare; /* RESERVED: DO NOT USE! */
268 __int32_t st_lspare; /* RESERVED: DO NOT USE! */
301 __int32_t st_lspare; /* RESERVED: DO NOT USE! */
H A Dsocket.h971 __int32_t scir_error; /* most recent error */
986 __int32_t scir_error;
1000 __int32_t scir_error;
/xnu-2422.115.4/bsd/i386/
H A Dtypes.h135 typedef __int32_t user32_ssize_t;
136 typedef __int32_t user32_long_t;
138 typedef __int32_t user32_time_t;
H A D_types.h44 typedef int __int32_t; typedef
/xnu-2422.115.4/bsd/kern/
H A Dsysv_sem.c179 out->sem_base = CAST_DOWN_EXPLICIT(__int32_t,in->sem_base);
189 out->sem_base = CAST_DOWN_EXPLICIT(__int32_t,in->sem_base);
H A Dkern_sysctl.c1649 (__int32_t)p->p_realtimer.it_interval.tv_usec;
1654 (__int32_t)p->p_realtimer.it_value.tv_usec;
1657 exp->p_rtime.tv_usec = (__int32_t)p->p_rtime.tv_usec;

Completed in 67 milliseconds