Lines Matching refs:nval

83 #define raw_cpu_generic_xchg(pcp, nval)					\  argument
88 *__p = nval; \
92 #define raw_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
98 *__p = nval; \
163 #define this_cpu_generic_xchg(pcp, nval) \ argument
168 __ret = raw_cpu_generic_xchg(pcp, nval); \
173 #define this_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
178 __ret = raw_cpu_generic_cmpxchg(pcp, oval, nval); \
273 #define raw_cpu_xchg_1(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
276 #define raw_cpu_xchg_2(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
279 #define raw_cpu_xchg_4(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
282 #define raw_cpu_xchg_8(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
286 #define raw_cpu_cmpxchg_1(pcp, oval, nval) \ argument
287 raw_cpu_generic_cmpxchg(pcp, oval, nval)
290 #define raw_cpu_cmpxchg_2(pcp, oval, nval) \ argument
291 raw_cpu_generic_cmpxchg(pcp, oval, nval)
294 #define raw_cpu_cmpxchg_4(pcp, oval, nval) \ argument
295 raw_cpu_generic_cmpxchg(pcp, oval, nval)
298 #define raw_cpu_cmpxchg_8(pcp, oval, nval) \ argument
299 raw_cpu_generic_cmpxchg(pcp, oval, nval)
398 #define this_cpu_xchg_1(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
401 #define this_cpu_xchg_2(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
404 #define this_cpu_xchg_4(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
407 #define this_cpu_xchg_8(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
411 #define this_cpu_cmpxchg_1(pcp, oval, nval) \ argument
412 this_cpu_generic_cmpxchg(pcp, oval, nval)
415 #define this_cpu_cmpxchg_2(pcp, oval, nval) \ argument
416 this_cpu_generic_cmpxchg(pcp, oval, nval)
419 #define this_cpu_cmpxchg_4(pcp, oval, nval) \ argument
420 this_cpu_generic_cmpxchg(pcp, oval, nval)
423 #define this_cpu_cmpxchg_8(pcp, oval, nval) \ argument
424 this_cpu_generic_cmpxchg(pcp, oval, nval)