Lines Matching defs:pcp
421 #define raw_cpu_read(pcp) __pcpu_size_call_return(raw_cpu_read_, pcp) argument
422 #define raw_cpu_write(pcp, val) __pcpu_size_call(raw_cpu_write_, pcp, val) argument
423 #define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val) argument
424 #define raw_cpu_and(pcp, val) __pcpu_size_call(raw_cpu_and_, pcp, val) argument
425 #define raw_cpu_or(pcp, val) __pcpu_size_call(raw_cpu_or_, pcp, val) argument
426 #define raw_cpu_add_return(pcp, val) __pcpu_size_call_return2(raw_cpu_add_return_, pcp, val) argument
427 #define raw_cpu_xchg(pcp, nval) __pcpu_size_call_return2(raw_cpu_xchg_, pcp, nval) argument
428 #define raw_cpu_cmpxchg(pcp, oval, nval) \ argument
433 #define raw_cpu_sub(pcp, val) raw_cpu_add(pcp, -(val)) argument
434 #define raw_cpu_inc(pcp) raw_cpu_add(pcp, 1) argument
435 #define raw_cpu_dec(pcp) raw_cpu_sub(pcp, 1) argument
436 #define raw_cpu_sub_return(pcp, val) raw_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
437 #define raw_cpu_inc_return(pcp) raw_cpu_add_return(pcp, 1) argument
438 #define raw_cpu_dec_return(pcp) raw_cpu_add_return(pcp, -1) argument
444 #define __this_cpu_read(pcp) \ argument
450 #define __this_cpu_write(pcp, val) \ argument
456 #define __this_cpu_add(pcp, val) \ argument
462 #define __this_cpu_and(pcp, val) \ argument
468 #define __this_cpu_or(pcp, val) \ argument
474 #define __this_cpu_add_return(pcp, val) \ argument
480 #define __this_cpu_xchg(pcp, nval) \ argument
486 #define __this_cpu_cmpxchg(pcp, oval, nval) \ argument
497 #define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val)) argument
498 #define __this_cpu_inc(pcp) __this_cpu_add(pcp, 1) argument
499 #define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1) argument
500 #define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
501 #define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1) argument
502 #define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1) argument
508 #define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, pcp) argument
509 #define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, pcp, val) argument
510 #define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val) argument
511 #define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, pcp, val) argument
512 #define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, pcp, val) argument
513 #define this_cpu_add_return(pcp, val) __pcpu_size_call_return2(this_cpu_add_return_, pcp, val) argument
514 #define this_cpu_xchg(pcp, nval) __pcpu_size_call_return2(this_cpu_xchg_, pcp, nval) argument
515 #define this_cpu_cmpxchg(pcp, oval, nval) \ argument
520 #define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val)) argument
521 #define this_cpu_inc(pcp) this_cpu_add(pcp, 1) argument
522 #define this_cpu_dec(pcp) this_cpu_sub(pcp, 1) argument
523 #define this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
524 #define this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1) argument
525 #define this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1) argument