Lines Matching defs:pcp

410 #define raw_cpu_read(pcp)		__pcpu_size_call_return(raw_cpu_read_, pcp)  argument
411 #define raw_cpu_write(pcp, val) __pcpu_size_call(raw_cpu_write_, pcp, val) argument
412 #define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val) argument
413 #define raw_cpu_and(pcp, val) __pcpu_size_call(raw_cpu_and_, pcp, val) argument
414 #define raw_cpu_or(pcp, val) __pcpu_size_call(raw_cpu_or_, pcp, val) argument
415 #define raw_cpu_add_return(pcp, val) __pcpu_size_call_return2(raw_cpu_add_return_, pcp, val) argument
416 #define raw_cpu_xchg(pcp, nval) __pcpu_size_call_return2(raw_cpu_xchg_, pcp, nval) argument
417 #define raw_cpu_cmpxchg(pcp, oval, nval) \ argument
419 #define raw_cpu_try_cmpxchg(pcp, ovalp, nval) \ argument
421 #define raw_cpu_sub(pcp, val) raw_cpu_add(pcp, -(val)) argument
422 #define raw_cpu_inc(pcp) raw_cpu_add(pcp, 1) argument
423 #define raw_cpu_dec(pcp) raw_cpu_sub(pcp, 1) argument
424 #define raw_cpu_sub_return(pcp, val) raw_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
425 #define raw_cpu_inc_return(pcp) raw_cpu_add_return(pcp, 1) argument
426 #define raw_cpu_dec_return(pcp) raw_cpu_add_return(pcp, -1) argument
432 #define __this_cpu_read(pcp) \ argument
438 #define __this_cpu_write(pcp, val) \ argument
444 #define __this_cpu_add(pcp, val) \ argument
450 #define __this_cpu_and(pcp, val) \ argument
456 #define __this_cpu_or(pcp, val) \ argument
462 #define __this_cpu_add_return(pcp, val) \ argument
468 #define __this_cpu_xchg(pcp, nval) \ argument
474 #define __this_cpu_cmpxchg(pcp, oval, nval) \ argument
480 #define __this_cpu_try_cmpxchg(pcp, ovalp, nval) \ argument
486 #define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val)) argument
487 #define __this_cpu_inc(pcp) __this_cpu_add(pcp, 1) argument
488 #define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1) argument
489 #define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
490 #define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1) argument
491 #define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1) argument
497 #define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, pcp) argument
498 #define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, pcp, val) argument
499 #define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val) argument
500 #define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, pcp, val) argument
501 #define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, pcp, val) argument
502 #define this_cpu_add_return(pcp, val) __pcpu_size_call_return2(this_cpu_add_return_, pcp, val) argument
503 #define this_cpu_xchg(pcp, nval) __pcpu_size_call_return2(this_cpu_xchg_, pcp, nval) argument
504 #define this_cpu_cmpxchg(pcp, oval, nval) \ argument
506 #define this_cpu_try_cmpxchg(pcp, ovalp, nval) \ argument
508 #define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val)) argument
509 #define this_cpu_inc(pcp) this_cpu_add(pcp, 1) argument
510 #define this_cpu_dec(pcp) this_cpu_sub(pcp, 1) argument
511 #define this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
512 #define this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1) argument
513 #define this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1) argument