Lines Matching refs:nval

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