22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
static OF_INLINE int32_t
of_atomic_int32_add(volatile int32_t *_Nonnull p, int32_t i)
{
return __sync_add_and_fetch(p, i);
}
static OF_INLINE void*
of_atomic_ptr_add(void *volatile _Nullable *_Nonnull p, intptr_t i)
{
return __sync_add_and_fetch(p, (void*)i);
}
static OF_INLINE int
of_atomic_int_sub(volatile int *_Nonnull p, int i)
{
return __sync_sub_and_fetch(p, i);
}
static OF_INLINE int32_t
of_atomic_int32_sub(volatile int32_t *_Nonnull p, int32_t i)
{
return __sync_sub_and_fetch(p, i);
}
static OF_INLINE void*
of_atomic_ptr_sub(void *volatile _Nullable *_Nonnull p, intptr_t i)
{
return __sync_sub_and_fetch(p, (void*)i);
}
static OF_INLINE int
of_atomic_int_inc(volatile int *_Nonnull p)
|
|
|
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
static OF_INLINE int32_t
of_atomic_int32_add(volatile int32_t *_Nonnull p, int32_t i)
{
return __sync_add_and_fetch(p, i);
}
static OF_INLINE void *_Nullable
of_atomic_ptr_add(void *volatile _Nullable *_Nonnull p, intptr_t i)
{
return __sync_add_and_fetch(p, (void*)i);
}
static OF_INLINE int
of_atomic_int_sub(volatile int *_Nonnull p, int i)
{
return __sync_sub_and_fetch(p, i);
}
static OF_INLINE int32_t
of_atomic_int32_sub(volatile int32_t *_Nonnull p, int32_t i)
{
return __sync_sub_and_fetch(p, i);
}
static OF_INLINE void *_Nullable
of_atomic_ptr_sub(void *volatile _Nullable *_Nonnull p, intptr_t i)
{
return __sync_sub_and_fetch(p, (void*)i);
}
static OF_INLINE int
of_atomic_int_inc(volatile int *_Nonnull p)
|