OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:atomic_dec_and_test
(Results
1 - 11
of
11
) sorted by null
/external/libdrm/
xf86atomic.h
53
# define
atomic_dec_and_test
(x) (__sync_add_and_fetch (&(x)->atomic, -1) == 0)
macro
75
# define
atomic_dec_and_test
(x) (AO_fetch_and_sub1_full(&(x)->atomic) == 1)
macro
97
# define
atomic_dec_and_test
(x) (atomic_dec_uint_nv(&(x)->atomic) == 0)
macro
/external/libdrm/etnaviv/
etnaviv_device.c
100
if (!
atomic_dec_and_test
(&dev->refcnt))
108
if (!
atomic_dec_and_test
(&dev->refcnt))
etnaviv_bo.c
240
if (!
atomic_dec_and_test
(&bo->refcnt))
/external/libdrm/freedreno/
freedreno_device.c
125
if (!
atomic_dec_and_test
(&dev->refcnt))
132
if (!
atomic_dec_and_test
(&dev->refcnt))
freedreno_bo.c
199
if (!
atomic_dec_and_test
(&bo->refcnt))
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
iatomic.h
125
*
atomic_dec_and_test
- decrement and test
133
static __inline__ int
atomic_dec_and_test
(atomic_t *v)
function
339
#define
atomic_dec_and_test
(v) (atomic_sub_return(1, (v)) == 0)
macro
479
#define
atomic_dec_and_test
(v) (atomic_sub_return(1, (v)) == 0)
macro
636
#define
atomic_dec_and_test
(v) (atomic_dec_return((v)) == 0)
macro
835
*
atomic_dec_and_test
- decrement by 1 and test
843
#define
atomic_dec_and_test
(v) (atomic_sub_return(1, (v)) == 0)
macro
970
static __inline__ int
atomic_dec_and_test
(volatile atomic_t *v)
function
1026
#define
atomic_dec_and_test
(v) (atomic_sub_return(1, (v)) == 0)
macro
/external/libdrm/omap/
omap_drm.c
126
if (!
atomic_dec_and_test
(&dev->refcnt))
360
if (!
atomic_dec_and_test
(&bo->refcnt))
/external/libdrm/amdgpu/
amdgpu_internal.h
176
return
atomic_dec_and_test
(dst);
/external/libdrm/tegra/
tegra.c
234
if (bo &&
atomic_dec_and_test
(&bo->ref))
/external/libdrm/nouveau/
nouveau.c
787
if (
atomic_dec_and_test
(&nouveau_bo(ref)->refcnt))
/external/libdrm/intel/
intel_bufmgr_gem.c
[
all
...]
Completed in 448 milliseconds