Lines Matching refs:nval
87 #define raw_cpu_generic_xchg(pcp, nval) \ argument
92 *__p = nval; \
96 #define raw_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
102 *__p = nval; \
167 #define this_cpu_generic_xchg(pcp, nval) \ argument
172 __ret = raw_cpu_generic_xchg(pcp, nval); \
177 #define this_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
182 __ret = raw_cpu_generic_cmpxchg(pcp, oval, nval); \
277 #define raw_cpu_xchg_1(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
280 #define raw_cpu_xchg_2(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
283 #define raw_cpu_xchg_4(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
286 #define raw_cpu_xchg_8(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
290 #define raw_cpu_cmpxchg_1(pcp, oval, nval) \ argument
291 raw_cpu_generic_cmpxchg(pcp, oval, nval)
294 #define raw_cpu_cmpxchg_2(pcp, oval, nval) \ argument
295 raw_cpu_generic_cmpxchg(pcp, oval, nval)
298 #define raw_cpu_cmpxchg_4(pcp, oval, nval) \ argument
299 raw_cpu_generic_cmpxchg(pcp, oval, nval)
302 #define raw_cpu_cmpxchg_8(pcp, oval, nval) \ argument
303 raw_cpu_generic_cmpxchg(pcp, oval, nval)
402 #define this_cpu_xchg_1(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
405 #define this_cpu_xchg_2(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
408 #define this_cpu_xchg_4(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
411 #define this_cpu_xchg_8(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
415 #define this_cpu_cmpxchg_1(pcp, oval, nval) \ argument
416 this_cpu_generic_cmpxchg(pcp, oval, nval)
419 #define this_cpu_cmpxchg_2(pcp, oval, nval) \ argument
420 this_cpu_generic_cmpxchg(pcp, oval, nval)
423 #define this_cpu_cmpxchg_4(pcp, oval, nval) \ argument
424 this_cpu_generic_cmpxchg(pcp, oval, nval)
427 #define this_cpu_cmpxchg_8(pcp, oval, nval) \ argument
428 this_cpu_generic_cmpxchg(pcp, oval, nval)