Lines Matching defs:pcp

408 #define raw_cpu_read(pcp)		__pcpu_size_call_return(raw_cpu_read_, pcp)  argument
409 #define raw_cpu_write(pcp, val) __pcpu_size_call(raw_cpu_write_, pcp, val) argument
410 #define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val) argument
411 #define raw_cpu_and(pcp, val) __pcpu_size_call(raw_cpu_and_, pcp, val) argument
412 #define raw_cpu_or(pcp, val) __pcpu_size_call(raw_cpu_or_, pcp, val) argument
413 #define raw_cpu_add_return(pcp, val) __pcpu_size_call_return2(raw_cpu_add_return_, pcp, val) argument
414 #define raw_cpu_xchg(pcp, nval) __pcpu_size_call_return2(raw_cpu_xchg_, pcp, nval) argument
415 #define raw_cpu_cmpxchg(pcp, oval, nval) \ argument
417 #define raw_cpu_try_cmpxchg(pcp, ovalp, nval) \ argument
419 #define raw_cpu_sub(pcp, val) raw_cpu_add(pcp, -(val)) argument
420 #define raw_cpu_inc(pcp) raw_cpu_add(pcp, 1) argument
421 #define raw_cpu_dec(pcp) raw_cpu_sub(pcp, 1) argument
422 #define raw_cpu_sub_return(pcp, val) raw_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
423 #define raw_cpu_inc_return(pcp) raw_cpu_add_return(pcp, 1) argument
424 #define raw_cpu_dec_return(pcp) raw_cpu_add_return(pcp, -1) argument
430 #define __this_cpu_read(pcp) \ argument
436 #define __this_cpu_write(pcp, val) \ argument
442 #define __this_cpu_add(pcp, val) \ argument
448 #define __this_cpu_and(pcp, val) \ argument
454 #define __this_cpu_or(pcp, val) \ argument
460 #define __this_cpu_add_return(pcp, val) \ argument
466 #define __this_cpu_xchg(pcp, nval) \ argument
472 #define __this_cpu_cmpxchg(pcp, oval, nval) \ argument
478 #define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val)) argument
479 #define __this_cpu_inc(pcp) __this_cpu_add(pcp, 1) argument
480 #define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1) argument
481 #define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
482 #define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1) argument
483 #define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1) argument
489 #define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, pcp) argument
490 #define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, pcp, val) argument
491 #define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val) argument
492 #define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, pcp, val) argument
493 #define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, pcp, val) argument
494 #define this_cpu_add_return(pcp, val) __pcpu_size_call_return2(this_cpu_add_return_, pcp, val) argument
495 #define this_cpu_xchg(pcp, nval) __pcpu_size_call_return2(this_cpu_xchg_, pcp, nval) argument
496 #define this_cpu_cmpxchg(pcp, oval, nval) \ argument
498 #define this_cpu_try_cmpxchg(pcp, ovalp, nval) \ argument
500 #define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val)) argument
501 #define this_cpu_inc(pcp) this_cpu_add(pcp, 1) argument
502 #define this_cpu_dec(pcp) this_cpu_sub(pcp, 1) argument
503 #define this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
504 #define this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1) argument
505 #define this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1) argument