HomeSort by: relevance | last modified time | path
    Searched defs:kr_count (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/drm2/include/linux/
kref.h 45 unsigned int kr_count; member in struct:kref
51 atomic_store_relaxed(&kref->kr_count, 1);
58 atomic_inc_uint_nv(&kref->kr_count);
69 count = atomic_load_relaxed(&kref->kr_count);
72 } while (atomic_cas_uint(&kref->kr_count, count, (count + 1)) !=
86 old = atomic_load_relaxed(&kref->kr_count);
90 } while (atomic_cas_uint(&kref->kr_count, old, new) != old);
110 old = atomic_load_relaxed(&kref->kr_count);
114 if (atomic_add_int_nv(&kref->kr_count, -1) == 0) {
123 } while (atomic_cas_uint(&kref->kr_count, old, new) != old)
    [all...]
kref.h 45 unsigned int kr_count; member in struct:kref
51 atomic_store_relaxed(&kref->kr_count, 1);
58 atomic_inc_uint_nv(&kref->kr_count);
69 count = atomic_load_relaxed(&kref->kr_count);
72 } while (atomic_cas_uint(&kref->kr_count, count, (count + 1)) !=
86 old = atomic_load_relaxed(&kref->kr_count);
90 } while (atomic_cas_uint(&kref->kr_count, old, new) != old);
110 old = atomic_load_relaxed(&kref->kr_count);
114 if (atomic_add_int_nv(&kref->kr_count, -1) == 0) {
123 } while (atomic_cas_uint(&kref->kr_count, old, new) != old)
    [all...]

Completed in 27 milliseconds