Lines Matching refs:nval
83 #define raw_cpu_generic_xchg(pcp, nval) \ argument
88 *__p = nval; \
92 #define __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, _cmpxchg) \ argument
95 __val = _cmpxchg(pcp, __old, nval); \
101 #define raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval) \ argument
107 *__p = nval; \
116 #define raw_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
119 raw_cpu_generic_try_cmpxchg(pcp, &__old, nval); \
171 #define this_cpu_generic_xchg(pcp, nval) \ argument
176 __ret = raw_cpu_generic_xchg(pcp, nval); \
181 #define this_cpu_generic_try_cmpxchg(pcp, ovalp, nval) \ argument
186 __ret = raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval); \
191 #define this_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
196 __ret = raw_cpu_generic_cmpxchg(pcp, oval, nval); \
280 #define raw_cpu_xchg_1(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
283 #define raw_cpu_xchg_2(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
286 #define raw_cpu_xchg_4(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
289 #define raw_cpu_xchg_8(pcp, nval) raw_cpu_generic_xchg(pcp, nval) argument
294 #define raw_cpu_try_cmpxchg_1(pcp, ovalp, nval) \ argument
295 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg_1)
297 #define raw_cpu_try_cmpxchg_1(pcp, ovalp, nval) \ argument
298 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
303 #define raw_cpu_try_cmpxchg_2(pcp, ovalp, nval) \ argument
304 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg_2)
306 #define raw_cpu_try_cmpxchg_2(pcp, ovalp, nval) \ argument
307 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
312 #define raw_cpu_try_cmpxchg_4(pcp, ovalp, nval) \ argument
313 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg_4)
315 #define raw_cpu_try_cmpxchg_4(pcp, ovalp, nval) \ argument
316 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
321 #define raw_cpu_try_cmpxchg_8(pcp, ovalp, nval) \ argument
322 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg_8)
324 #define raw_cpu_try_cmpxchg_8(pcp, ovalp, nval) \ argument
325 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
331 #define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) \ argument
332 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg64)
334 #define raw_cpu_try_cmpxchg64(pcp, ovalp, nval) \ argument
335 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
340 #define raw_cpu_try_cmpxchg128(pcp, ovalp, nval) \ argument
341 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, raw_cpu_cmpxchg128)
343 #define raw_cpu_try_cmpxchg128(pcp, ovalp, nval) \ argument
344 raw_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
349 #define raw_cpu_cmpxchg_1(pcp, oval, nval) \ argument
350 raw_cpu_generic_cmpxchg(pcp, oval, nval)
353 #define raw_cpu_cmpxchg_2(pcp, oval, nval) \ argument
354 raw_cpu_generic_cmpxchg(pcp, oval, nval)
357 #define raw_cpu_cmpxchg_4(pcp, oval, nval) \ argument
358 raw_cpu_generic_cmpxchg(pcp, oval, nval)
361 #define raw_cpu_cmpxchg_8(pcp, oval, nval) \ argument
362 raw_cpu_generic_cmpxchg(pcp, oval, nval)
366 #define raw_cpu_cmpxchg64(pcp, oval, nval) \ argument
367 raw_cpu_generic_cmpxchg(pcp, oval, nval)
370 #define raw_cpu_cmpxchg128(pcp, oval, nval) \ argument
371 raw_cpu_generic_cmpxchg(pcp, oval, nval)
453 #define this_cpu_xchg_1(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
456 #define this_cpu_xchg_2(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
459 #define this_cpu_xchg_4(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
462 #define this_cpu_xchg_8(pcp, nval) this_cpu_generic_xchg(pcp, nval) argument
467 #define this_cpu_try_cmpxchg_1(pcp, ovalp, nval) \ argument
468 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg_1)
470 #define this_cpu_try_cmpxchg_1(pcp, ovalp, nval) \ argument
471 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
476 #define this_cpu_try_cmpxchg_2(pcp, ovalp, nval) \ argument
477 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg_2)
479 #define this_cpu_try_cmpxchg_2(pcp, ovalp, nval) \ argument
480 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
485 #define this_cpu_try_cmpxchg_4(pcp, ovalp, nval) \ argument
486 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg_4)
488 #define this_cpu_try_cmpxchg_4(pcp, ovalp, nval) \ argument
489 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
494 #define this_cpu_try_cmpxchg_8(pcp, ovalp, nval) \ argument
495 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg_8)
497 #define this_cpu_try_cmpxchg_8(pcp, ovalp, nval) \ argument
498 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
504 #define this_cpu_try_cmpxchg64(pcp, ovalp, nval) \ argument
505 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg64)
507 #define this_cpu_try_cmpxchg64(pcp, ovalp, nval) \ argument
508 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
513 #define this_cpu_try_cmpxchg128(pcp, ovalp, nval) \ argument
514 __cpu_fallback_try_cmpxchg(pcp, ovalp, nval, this_cpu_cmpxchg128)
516 #define this_cpu_try_cmpxchg128(pcp, ovalp, nval) \ argument
517 this_cpu_generic_try_cmpxchg(pcp, ovalp, nval)
522 #define this_cpu_cmpxchg_1(pcp, oval, nval) \ argument
523 this_cpu_generic_cmpxchg(pcp, oval, nval)
526 #define this_cpu_cmpxchg_2(pcp, oval, nval) \ argument
527 this_cpu_generic_cmpxchg(pcp, oval, nval)
530 #define this_cpu_cmpxchg_4(pcp, oval, nval) \ argument
531 this_cpu_generic_cmpxchg(pcp, oval, nval)
534 #define this_cpu_cmpxchg_8(pcp, oval, nval) \ argument
535 this_cpu_generic_cmpxchg(pcp, oval, nval)
539 #define this_cpu_cmpxchg64(pcp, oval, nval) \ argument
540 this_cpu_generic_cmpxchg(pcp, oval, nval)
543 #define this_cpu_cmpxchg128(pcp, oval, nval) \ argument
544 this_cpu_generic_cmpxchg(pcp, oval, nval)