Lines Matching refs:new
44 unsigned int old, new, prev;
50 new = old | _DRM_LOCK_CONT;
52 new = context | _DRM_LOCK_HELD;
53 prev = atomic_cas_uint(lock, old, new);
65 if ((_DRM_LOCKING_CONTEXT(new)) == context &&
66 _DRM_LOCK_IS_HELD(new)) {
81 unsigned int old, new, prev;
86 new = context | _DRM_LOCK_HELD;
87 prev = atomic_cas_uint(lock, old, new);
97 unsigned int old, new, prev;
103 new = 0;
104 prev = atomic_cas_uint(lock, old, new);