Lines Matching defs:pcp

420 #define raw_cpu_read(pcp)		__pcpu_size_call_return(raw_cpu_read_, pcp)  argument
421 #define raw_cpu_write(pcp, val) __pcpu_size_call(raw_cpu_write_, pcp, val) argument
422 #define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val) argument
423 #define raw_cpu_and(pcp, val) __pcpu_size_call(raw_cpu_and_, pcp, val) argument
424 #define raw_cpu_or(pcp, val) __pcpu_size_call(raw_cpu_or_, pcp, val) argument
425 #define raw_cpu_add_return(pcp, val) __pcpu_size_call_return2(raw_cpu_add_return_, pcp, val) argument
426 #define raw_cpu_xchg(pcp, nval) __pcpu_size_call_return2(raw_cpu_xchg_, pcp, nval) argument
427 #define raw_cpu_cmpxchg(pcp, oval, nval) \ argument
432 #define raw_cpu_sub(pcp, val) raw_cpu_add(pcp, -(val)) argument
433 #define raw_cpu_inc(pcp) raw_cpu_add(pcp, 1) argument
434 #define raw_cpu_dec(pcp) raw_cpu_sub(pcp, 1) argument
435 #define raw_cpu_sub_return(pcp, val) raw_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
436 #define raw_cpu_inc_return(pcp) raw_cpu_add_return(pcp, 1) argument
437 #define raw_cpu_dec_return(pcp) raw_cpu_add_return(pcp, -1) argument
443 #define __this_cpu_read(pcp) \ argument
449 #define __this_cpu_write(pcp, val) \ argument
455 #define __this_cpu_add(pcp, val) \ argument
461 #define __this_cpu_and(pcp, val) \ argument
467 #define __this_cpu_or(pcp, val) \ argument
473 #define __this_cpu_add_return(pcp, val) \ argument
479 #define __this_cpu_xchg(pcp, nval) \ argument
485 #define __this_cpu_cmpxchg(pcp, oval, nval) \ argument
496 #define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val)) argument
497 #define __this_cpu_inc(pcp) __this_cpu_add(pcp, 1) argument
498 #define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1) argument
499 #define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
500 #define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1) argument
501 #define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1) argument
507 #define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, pcp) argument
508 #define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, pcp, val) argument
509 #define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val) argument
510 #define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, pcp, val) argument
511 #define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, pcp, val) argument
512 #define this_cpu_add_return(pcp, val) __pcpu_size_call_return2(this_cpu_add_return_, pcp, val) argument
513 #define this_cpu_xchg(pcp, nval) __pcpu_size_call_return2(this_cpu_xchg_, pcp, nval) argument
514 #define this_cpu_cmpxchg(pcp, oval, nval) \ argument
519 #define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val)) argument
520 #define this_cpu_inc(pcp) this_cpu_add(pcp, 1) argument
521 #define this_cpu_dec(pcp) this_cpu_sub(pcp, 1) argument
522 #define this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
523 #define this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1) argument
524 #define this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1) argument