Searched refs:nval (Results 1 – 2 of 2) sorted by relevance
/arch/s390/include/asm/ |
D | percpu.h | 70 #define arch_this_cpu_cmpxchg(pcp, oval, nval) \ argument 79 ret__ = cmpxchg64(ptr__, oval, nval); \ 82 ret__ = cmpxchg(ptr__, oval, nval); \ 88 #define this_cpu_cmpxchg_1(pcp, oval, nval) arch_this_cpu_cmpxchg(pcp, oval, nval) argument 89 #define this_cpu_cmpxchg_2(pcp, oval, nval) arch_this_cpu_cmpxchg(pcp, oval, nval) argument 90 #define this_cpu_cmpxchg_4(pcp, oval, nval) arch_this_cpu_cmpxchg(pcp, oval, nval) argument 91 #define this_cpu_cmpxchg_8(pcp, oval, nval) arch_this_cpu_cmpxchg(pcp, oval, nval) argument 93 #define arch_this_cpu_xchg(pcp, nval) \ argument 99 ret__ = xchg(ptr__, nval); \ 104 #define this_cpu_xchg_1(pcp, nval) arch_this_cpu_xchg(pcp, nval) argument [all …]
|
/arch/x86/include/asm/ |
D | percpu.h | 272 #define percpu_xchg_op(var, nval) \ argument 275 typeof(var) pxo_new__ = (nval); \ 318 #define percpu_cmpxchg_op(var, oval, nval) \ argument 322 typeof(var) pco_new__ = (nval); \ 405 #define this_cpu_xchg_1(pcp, nval) percpu_xchg_op(pcp, nval) argument 406 #define this_cpu_xchg_2(pcp, nval) percpu_xchg_op(pcp, nval) argument 407 #define this_cpu_xchg_4(pcp, nval) percpu_xchg_op(pcp, nval) argument 412 #define __this_cpu_cmpxchg_1(pcp, oval, nval) percpu_cmpxchg_op(pcp, oval, nval) argument 413 #define __this_cpu_cmpxchg_2(pcp, oval, nval) percpu_cmpxchg_op(pcp, oval, nval) argument 414 #define __this_cpu_cmpxchg_4(pcp, oval, nval) percpu_cmpxchg_op(pcp, oval, nval) argument [all …]
|