Symbol: __uintptr_t
include/pthread.h
145
__uintptr_t pthread_cleanup_pad[8];
include/ssp/ssp.h
96
__uintptr_t left = (__uintptr_t)leftp;
include/ssp/ssp.h
97
__uintptr_t right = (__uintptr_t)rightp;
lib/libdevinfo/devinfo.h
36
typedef __uintptr_t devinfo_handle_t;
sys/arm/include/sysarch.h
64
__uintptr_t addr; /* Virtual start address */
sys/arm64/include/sysarch.h
47
__uintptr_t addr;
sys/sys/_atomic_subword.h
51
(uint32_t *)((__uintptr_t)(p) - ((__uintptr_t)(p) % 4))
sys/sys/_atomic_subword.h
55
((3 - ((__uintptr_t)(p) % 4)) * NBBY)
sys/sys/_atomic_subword.h
58
((2 - ((__uintptr_t)(p) % 4)) * NBBY)
sys/sys/_atomic_subword.h
61
((((__uintptr_t)(p) % 4)) * NBBY)
sys/sys/_atomic_subword.h
64
((((__uintptr_t)(p) % 4)) * NBBY)
sys/sys/_mutex.h
49
volatile __uintptr_t mtx_lock; /* Owner and flags. */
sys/sys/_mutex.h
63
volatile __uintptr_t mtx_lock; /* Owner and flags. */
sys/sys/_rwlock.h
46
volatile __uintptr_t rw_lock;
sys/sys/_rwlock.h
60
volatile __uintptr_t rw_lock;
sys/sys/_stdint.h
78
typedef __uintptr_t uintptr_t;
sys/sys/_sx.h
42
volatile __uintptr_t sx_lock;
sys/sys/_types.h
172
typedef __uintptr_t __uintcap_t;
sys/sys/_types.h
76
typedef __uintptr_t __uint64ptr_t;
sys/sys/_umtx.h
44
__uintptr_t m_rb_lnk; /* Robust linkage */
sys/sys/cdefs.h
487
#define __DECONST(type, var) ((type)(__uintptr_t)(const void *)(var))
sys/sys/cdefs.h
491
#define __DEVOLATILE(type, var) ((type)(__uintptr_t)(volatile void *)(var))
sys/sys/cdefs.h
495
#define __DEQUALIFY(type, var) ((type)(__uintptr_t)(const volatile void *)(var))
sys/sys/cdefs.h
644
(((__uintptr_t)(x) & ((align) - 1)) == 0)
sys/sys/cdefs.h
648
((__typeof__(x))(((__uintptr_t)(x)+((align)-1))&(~((align)-1))))
sys/sys/cdefs.h
652
((__typeof__(x))((__uintptr_t)(x)&(~((align)-1))))
sys/sys/event.h
85
__uintptr_t ident; /* identifier for this event */
sys/sys/event.h
97
__uintptr_t ident; /* identifier for this event */
sys/sys/socket.h
93
typedef __uintptr_t uintptr_t;
sys/sys/stdatomic.h
228
typedef _Atomic(__uintptr_t) atomic_uintptr_t;
sys/sys/tree.h
334
#define _RB_L ((__uintptr_t)1)
sys/sys/tree.h
335
#define _RB_R ((__uintptr_t)2)
sys/sys/tree.h
336
#define _RB_LR ((__uintptr_t)3)
sys/sys/tree.h
337
#define _RB_BITS(elm) ((__uintptr_t)elm)
sys/sys/tree.h
340
((__uintptr_t)(elm) op (dir)))
sys/sys/tree.h
352
_RB_UP(dst, field) = (__typeof(src))((__uintptr_t)src | \
sys/sys/tree.h
544
__uintptr_t elmdir, sibdir; \
sys/sys/tree.h
650
__uintptr_t elmdir, sibdir; \
tools/build/cross-build/include/common/sys/cdefs.h
255
#define __DECONST(type, var) ((type)(__uintptr_t)(const void *)(var))
tools/build/cross-build/include/common/sys/cdefs.h
259
#define __DEVOLATILE(type, var) ((type)(__uintptr_t)(volatile void *)(var))
tools/build/cross-build/include/common/sys/cdefs.h
263
#define __DEQUALIFY(type, var) ((type)(__uintptr_t)(const volatile void *)(var))
tools/build/cross-build/include/common/sys/cdefs.h
295
(((__uintptr_t)x & ((align) - 1)) == 0)
tools/build/cross-build/include/common/sys/cdefs.h
299
((__typeof__(x))(((__uintptr_t)(x)+((align)-1))&(~((align)-1))))