Home
last modified time | relevance | path

Searched refs:p_atomic_fetch_add (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/mesa3d/src/util/
H A Du_atomic.h53 #define p_atomic_fetch_add(v, i) __atomic_fetch_add((v), (i), __ATOMIC_ACQ_REL) macro
69 #define p_atomic_fetch_add(v, i) __sync_fetch_and_add((v), (i)) macro
102 #define p_atomic_fetch_add(_v, _i) (*(_v) = *(_v) + (_i), *(_v) - (_i)) macro
166 ((void) p_atomic_fetch_add((_v), (_i)))
175 #define p_atomic_fetch_add(_v, _i) (\ macro
264 #define p_atomic_fetch_add(v, i) (__typeof(*v)) ( \ macro
H A Dsimple_mtx.h129 c = p_atomic_fetch_add(&mtx->val, -1); in simple_mtx_unlock()
/aosp_15_r20/external/mesa3d/src/util/tests/
H A Du_atomic_test.cpp133 r = p_atomic_fetch_add(&v, -1); in TYPED_TEST()
/aosp_15_r20/external/mesa3d/src/virtio/vulkan/
H A Dvn_common.h362 return p_atomic_fetch_add(&vn_next_obj_id, 1); in vn_get_next_obj_id()
/aosp_15_r20/external/mesa3d/src/vulkan/wsi/
H A Dwsi_common.c1363 uint32_t current_frame = p_atomic_fetch_add(&dev->current_frame, 1); in wsi_common_queue_present()
/aosp_15_r20/external/mesa3d/src/freedreno/vulkan/
H A Dtu_device.cc1444 instance->instance_idx = p_atomic_fetch_add(&instance_count, 1); in tu_CreateInstance()
/aosp_15_r20/external/mesa3d/docs/relnotes/
H A D22.2.0.rst3142 - u_atomic: Add p_atomic_fetch_add which returns the old value
3143 - zink: Use p_atomic_fetch_add