Lines Matching refs:nval
96 #define raw_cpu_generic_xchg(pcp, nval) \ argument
101 *__p = nval; \
105 #define __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, _cmpxchg) \ argument
108 __val = _cmpxchg(pcp, __old, nval); \
114 #define raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval) \ argument
120 *__p = nval; \
129 #define raw_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
132 raw_cpu_generic_try_cmpxchg(pcp, &__old, nval); \
184 #define this_cpu_generic_xchg(pcp, nval) \ argument
189 __ret = raw_cpu_generic_xchg(pcp, nval); \
194 #define this_cpu_generic_try_cmpxchg(pcp, ovalp, nval) \ argument
199 __ret = raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval); \
204 #define this_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
209 __ret = raw_cpu_generic_cmpxchg(pcp, oval, nval); \
293 #define raw_cpu_xchg_1(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
296 #define raw_cpu_xchg_2(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
299 #define raw_cpu_xchg_4(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
302 #define raw_cpu_xchg_8(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
307 #define raw_cpu_try_cmpxchg_1(pcp, ovalp, nval) \ argument
308 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg_1)
310 #define raw_cpu_try_cmpxchg_1(pcp, ovalp, nval) \ argument
311 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
316 #define raw_cpu_try_cmpxchg_2(pcp, ovalp, nval) \ argument
317 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg_2)
319 #define raw_cpu_try_cmpxchg_2(pcp, ovalp, nval) \ argument
320 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
325 #define raw_cpu_try_cmpxchg_4(pcp, ovalp, nval) \ argument
326 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg_4)
328 #define raw_cpu_try_cmpxchg_4(pcp, ovalp, nval) \ argument
329 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
334 #define raw_cpu_try_cmpxchg_8(pcp, ovalp, nval) \ argument
335 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg_8)
337 #define raw_cpu_try_cmpxchg_8(pcp, ovalp, nval) \ argument
338 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
344 #define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) \ argument
345 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg64)
347 #define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) \ argument
348 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
353 #define raw_cpu_try_cmpxchg128(pcp, ovalp, nval) \ argument
354 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg128)
356 #define raw_cpu_try_cmpxchg128(pcp, ovalp, nval) \ argument
357 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
362 #define raw_cpu_cmpxchg_1(pcp, oval, nval) \ argument
363 raw_cpu_generic_cmpxchg(pcp, oval, nval)
366 #define raw_cpu_cmpxchg_2(pcp, oval, nval) \ argument
367 raw_cpu_generic_cmpxchg(pcp, oval, nval)
370 #define raw_cpu_cmpxchg_4(pcp, oval, nval) \ argument
371 raw_cpu_generic_cmpxchg(pcp, oval, nval)
374 #define raw_cpu_cmpxchg_8(pcp, oval, nval) \ argument
375 raw_cpu_generic_cmpxchg(pcp, oval, nval)
379 #define raw_cpu_cmpxchg64(pcp, oval, nval) \ argument
380 raw_cpu_generic_cmpxchg(pcp, oval, nval)
383 #define raw_cpu_cmpxchg128(pcp, oval, nval) \ argument
384 raw_cpu_generic_cmpxchg(pcp, oval, nval)
466 #define this_cpu_xchg_1(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
469 #define this_cpu_xchg_2(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
472 #define this_cpu_xchg_4(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
475 #define this_cpu_xchg_8(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
480 #define this_cpu_try_cmpxchg_1(pcp, ovalp, nval) \ argument
481 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg_1)
483 #define this_cpu_try_cmpxchg_1(pcp, ovalp, nval) \ argument
484 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
489 #define this_cpu_try_cmpxchg_2(pcp, ovalp, nval) \ argument
490 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg_2)
492 #define this_cpu_try_cmpxchg_2(pcp, ovalp, nval) \ argument
493 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
498 #define this_cpu_try_cmpxchg_4(pcp, ovalp, nval) \ argument
499 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg_4)
501 #define this_cpu_try_cmpxchg_4(pcp, ovalp, nval) \ argument
502 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
507 #define this_cpu_try_cmpxchg_8(pcp, ovalp, nval) \ argument
508 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg_8)
510 #define this_cpu_try_cmpxchg_8(pcp, ovalp, nval) \ argument
511 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
517 #define this_cpu_try_cmpxchg64(pcp, ovalp, nval) \ argument
518 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg64)
520 #define this_cpu_try_cmpxchg64(pcp, ovalp, nval) \ argument
521 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
526 #define this_cpu_try_cmpxchg128(pcp, ovalp, nval) \ argument
527 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg128)
529 #define this_cpu_try_cmpxchg128(pcp, ovalp, nval) \ argument
530 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
535 #define this_cpu_cmpxchg_1(pcp, oval, nval) \ argument
536 this_cpu_generic_cmpxchg(pcp, oval, nval)
539 #define this_cpu_cmpxchg_2(pcp, oval, nval) \ argument
540 this_cpu_generic_cmpxchg(pcp, oval, nval)
543 #define this_cpu_cmpxchg_4(pcp, oval, nval) \ argument
544 this_cpu_generic_cmpxchg(pcp, oval, nval)
547 #define this_cpu_cmpxchg_8(pcp, oval, nval) \ argument
548 this_cpu_generic_cmpxchg(pcp, oval, nval)
552 #define this_cpu_cmpxchg64(pcp, oval, nval) \ argument
553 this_cpu_generic_cmpxchg(pcp, oval, nval)
556 #define this_cpu_cmpxchg128(pcp, oval, nval) \ argument
557 this_cpu_generic_cmpxchg(pcp, oval, nval)