Lines Matching refs:intptr_t

46 typedef intptr_t atomic_flag;
47 typedef intptr_t atomic_bool;
48 typedef intptr_t atomic_char;
49 typedef intptr_t atomic_schar;
50 typedef intptr_t atomic_uchar;
51 typedef intptr_t atomic_short;
52 typedef intptr_t atomic_ushort;
53 typedef intptr_t atomic_int;
54 typedef intptr_t atomic_uint;
55 typedef intptr_t atomic_long;
56 typedef intptr_t atomic_ulong;
57 typedef intptr_t atomic_llong;
58 typedef intptr_t atomic_ullong;
59 typedef intptr_t atomic_wchar_t;
60 typedef intptr_t atomic_int_least8_t;
61 typedef intptr_t atomic_uint_least8_t;
62 typedef intptr_t atomic_int_least16_t;
63 typedef intptr_t atomic_uint_least16_t;
64 typedef intptr_t atomic_int_least32_t;
65 typedef intptr_t atomic_uint_least32_t;
66 typedef intptr_t atomic_int_least64_t;
67 typedef intptr_t atomic_uint_least64_t;
68 typedef intptr_t atomic_int_fast8_t;
69 typedef intptr_t atomic_uint_fast8_t;
70 typedef intptr_t atomic_int_fast16_t;
71 typedef intptr_t atomic_uint_fast16_t;
72 typedef intptr_t atomic_int_fast32_t;
73 typedef intptr_t atomic_uint_fast32_t;
74 typedef intptr_t atomic_int_fast64_t;
75 typedef intptr_t atomic_uint_fast64_t;
76 typedef intptr_t atomic_intptr_t;
77 typedef intptr_t atomic_uintptr_t;
78 typedef intptr_t atomic_size_t;
79 typedef intptr_t atomic_ptrdiff_t;
80 typedef intptr_t atomic_intmax_t;
81 typedef intptr_t atomic_uintmax_t;
83 static inline void atomic_store(intptr_t *object, intptr_t desired)
92 static inline intptr_t atomic_load(intptr_t *object)
107 static inline int atomic_compare_exchange_strong(intptr_t *object, intptr_t *expected,
108 intptr_t desired)
110 intptr_t old = *expected;
111 *expected = (intptr_t)atomic_cas_ptr(object, (void *)old, (void *)desired);
124 static inline intptr_t atomic_fetch_add(intptr_t *object, intptr_t operand)
132 static inline intptr_t atomic_fetch_or(intptr_t *object, intptr_t operand)
134 intptr_t old;
141 static inline intptr_t atomic_fetch_xor(intptr_t *object, intptr_t operand)
143 intptr_t old;
150 static inline intptr_t atomic_fetch_and(intptr_t *object, intptr_t operand)
152 intptr_t old;