Lines Matching refs:z
113 unsigned long x, y, z; in atomic_operation() local
120 z = 0; in atomic_operation()
136 ret = get_user(z, p); in atomic_operation()
140 if (z != x) in atomic_operation()
145 if (__get_user(z, p) == 0) { in atomic_operation()
146 if (z != x) in atomic_operation()
165 ret = get_user(z, p); in atomic_operation()
171 if (__get_user(z, p) == 0) { in atomic_operation()
188 ret = get_user(z, p); in atomic_operation()
194 if (__get_user(z, p) == 0) { in atomic_operation()
195 y = x ^ z; in atomic_operation()
212 ret = get_user(z, p); in atomic_operation()
218 if (__get_user(z, p) == 0) { in atomic_operation()
219 y = x ^ z; in atomic_operation()
236 ret = get_user(z, p); in atomic_operation()
242 if (__get_user(z, p) == 0) { in atomic_operation()
243 y = x & z; in atomic_operation()
260 ret = get_user(z, p); in atomic_operation()
266 if (__get_user(z, p) == 0) { in atomic_operation()
267 y = z - x; in atomic_operation()
284 ret = get_user(z, p); in atomic_operation()
290 if (__get_user(z, p) == 0) { in atomic_operation()
291 y = z + x; in atomic_operation()
309 __frame->gr5 = z; in atomic_operation()