Lines Matching defs:new
62 unsigned int old, new, prev;
69 new = old | _DRM_LOCK_CONT;
71 new = context | _DRM_LOCK_HELD |
75 prev = cmpxchg(lock, old, new);
89 if ((_DRM_LOCKING_CONTEXT(new)) == context && (new & _DRM_LOCK_HELD)) {
111 unsigned int old, new, prev;
117 new = context | _DRM_LOCK_HELD;
118 prev = cmpxchg(lock, old, new);
126 unsigned int old, new, prev;
140 new = _DRM_LOCKING_CONTEXT(old);
141 prev = cmpxchg(lock, old, new);