Lines Matching refs:nval

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