Lines Matching defs:pcp

411 #define raw_cpu_read(pcp)		__pcpu_size_call_return(raw_cpu_read_, pcp)  argument
412 #define raw_cpu_write(pcp, val) __pcpu_size_call(raw_cpu_write_, pcp, val) argument
413 #define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val) argument
414 #define raw_cpu_and(pcp, val) __pcpu_size_call(raw_cpu_and_, pcp, val) argument
415 #define raw_cpu_or(pcp, val) __pcpu_size_call(raw_cpu_or_, pcp, val) argument
416 #define raw_cpu_add_return(pcp, val) __pcpu_size_call_return2(raw_cpu_add_return_, pcp, val) argument
417 #define raw_cpu_xchg(pcp, nval) __pcpu_size_call_return2(raw_cpu_xchg_, pcp, nval) argument
418 #define raw_cpu_cmpxchg(pcp, oval, nval) \ argument
420 #define raw_cpu_try_cmpxchg(pcp, ovalp, nval) \ argument
422 #define raw_cpu_sub(pcp, val) raw_cpu_add(pcp, -(val)) argument
423 #define raw_cpu_inc(pcp) raw_cpu_add(pcp, 1) argument
424 #define raw_cpu_dec(pcp) raw_cpu_sub(pcp, 1) argument
425 #define raw_cpu_sub_return(pcp, val) raw_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
426 #define raw_cpu_inc_return(pcp) raw_cpu_add_return(pcp, 1) argument
427 #define raw_cpu_dec_return(pcp) raw_cpu_add_return(pcp, -1) argument
433 #define __this_cpu_read(pcp) \ argument
439 #define __this_cpu_write(pcp, val) \ argument
445 #define __this_cpu_add(pcp, val) \ argument
451 #define __this_cpu_and(pcp, val) \ argument
457 #define __this_cpu_or(pcp, val) \ argument
463 #define __this_cpu_add_return(pcp, val) \ argument
469 #define __this_cpu_xchg(pcp, nval) \ argument
475 #define __this_cpu_cmpxchg(pcp, oval, nval) \ argument
481 #define __this_cpu_try_cmpxchg(pcp, ovalp, nval) \ argument
487 #define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val)) argument
488 #define __this_cpu_inc(pcp) __this_cpu_add(pcp, 1) argument
489 #define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1) argument
490 #define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
491 #define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1) argument
492 #define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1) argument
498 #define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, pcp) argument
499 #define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, pcp, val) argument
500 #define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val) argument
501 #define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, pcp, val) argument
502 #define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, pcp, val) argument
503 #define this_cpu_add_return(pcp, val) __pcpu_size_call_return2(this_cpu_add_return_, pcp, val) argument
504 #define this_cpu_xchg(pcp, nval) __pcpu_size_call_return2(this_cpu_xchg_, pcp, nval) argument
505 #define this_cpu_cmpxchg(pcp, oval, nval) \ argument
507 #define this_cpu_try_cmpxchg(pcp, ovalp, nval) \ argument
509 #define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val)) argument
510 #define this_cpu_inc(pcp) this_cpu_add(pcp, 1) argument
511 #define this_cpu_dec(pcp) this_cpu_sub(pcp, 1) argument
512 #define this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(typeof(pcp))(val)) argument
513 #define this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1) argument
514 #define this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1) argument