Lines Matching defs:pcp
324 #define _this_cpu_generic_read(pcp) \ argument
334 # define this_cpu_read_1(pcp) _this_cpu_generic_read(pcp) argument
337 # define this_cpu_read_2(pcp) _this_cpu_generic_read(pcp) argument
340 # define this_cpu_read_4(pcp) _this_cpu_generic_read(pcp) argument
343 # define this_cpu_read_8(pcp) _this_cpu_generic_read(pcp) argument
345 # define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, (pcp)) argument
348 #define _this_cpu_generic_to_op(pcp, val, op) \ argument
358 # define this_cpu_write_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) argument
361 # define this_cpu_write_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) argument
364 # define this_cpu_write_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) argument
367 # define this_cpu_write_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) argument
369 # define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, (pcp), (val)) argument
374 # define this_cpu_add_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) argument
377 # define this_cpu_add_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) argument
380 # define this_cpu_add_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) argument
383 # define this_cpu_add_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) argument
385 # define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, (pcp), (val)) argument
389 # define this_cpu_sub(pcp, val) this_cpu_add((pcp), -(val)) argument
393 # define this_cpu_inc(pcp) this_cpu_add((pcp), 1) argument
397 # define this_cpu_dec(pcp) this_cpu_sub((pcp), 1) argument
402 # define this_cpu_and_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) argument
405 # define this_cpu_and_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) argument
408 # define this_cpu_and_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) argument
411 # define this_cpu_and_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) argument
413 # define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, (pcp), (val)) argument
418 # define this_cpu_or_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) argument
421 # define this_cpu_or_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) argument
424 # define this_cpu_or_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) argument
427 # define this_cpu_or_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) argument
429 # define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, (pcp), (val)) argument
434 # define this_cpu_xor_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) argument
437 # define this_cpu_xor_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) argument
440 # define this_cpu_xor_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) argument
443 # define this_cpu_xor_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) argument
445 # define this_cpu_xor(pcp, val) __pcpu_size_call(this_cpu_or_, (pcp), (val)) argument
448 #define _this_cpu_generic_add_return(pcp, val) \ argument
461 # define this_cpu_add_return_1(pcp, val) _this_cpu_generic_add_return(pcp, val) argument
464 # define this_cpu_add_return_2(pcp, val) _this_cpu_generic_add_return(pcp, val) argument
467 # define this_cpu_add_return_4(pcp, val) _this_cpu_generic_add_return(pcp, val) argument
470 # define this_cpu_add_return_8(pcp, val) _this_cpu_generic_add_return(pcp, val) argument
472 # define this_cpu_add_return(pcp, val) __pcpu_size_call_return2(this_cpu_add_return_, pcp, val) argument
475 #define this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(val)) argument
476 #define this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1) argument
477 #define this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1) argument
479 #define _this_cpu_generic_xchg(pcp, nval) \ argument
491 # define this_cpu_xchg_1(pcp, nval) _this_cpu_generic_xchg(pcp, nval) argument
494 # define this_cpu_xchg_2(pcp, nval) _this_cpu_generic_xchg(pcp, nval) argument
497 # define this_cpu_xchg_4(pcp, nval) _this_cpu_generic_xchg(pcp, nval) argument
500 # define this_cpu_xchg_8(pcp, nval) _this_cpu_generic_xchg(pcp, nval) argument
502 # define this_cpu_xchg(pcp, nval) \ argument
506 #define _this_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
520 # define this_cpu_cmpxchg_1(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval) argument
523 # define this_cpu_cmpxchg_2(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval) argument
526 # define this_cpu_cmpxchg_4(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval) argument
529 # define this_cpu_cmpxchg_8(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval) argument
531 # define this_cpu_cmpxchg(pcp, oval, nval) \ argument
591 # define __this_cpu_read_1(pcp) (*__this_cpu_ptr(&(pcp))) argument
594 # define __this_cpu_read_2(pcp) (*__this_cpu_ptr(&(pcp))) argument
597 # define __this_cpu_read_4(pcp) (*__this_cpu_ptr(&(pcp))) argument
600 # define __this_cpu_read_8(pcp) (*__this_cpu_ptr(&(pcp))) argument
602 # define __this_cpu_read(pcp) __pcpu_size_call_return(__this_cpu_read_, (pcp)) argument
605 #define __this_cpu_generic_to_op(pcp, val, op) \ argument
612 # define __this_cpu_write_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) argument
615 # define __this_cpu_write_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) argument
618 # define __this_cpu_write_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) argument
621 # define __this_cpu_write_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) argument
623 # define __this_cpu_write(pcp, val) __pcpu_size_call(__this_cpu_write_, (pcp), (val)) argument
628 # define __this_cpu_add_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) argument
631 # define __this_cpu_add_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) argument
634 # define __this_cpu_add_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) argument
637 # define __this_cpu_add_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) argument
639 # define __this_cpu_add(pcp, val) __pcpu_size_call(__this_cpu_add_, (pcp), (val)) argument
643 # define __this_cpu_sub(pcp, val) __this_cpu_add((pcp), -(val)) argument
647 # define __this_cpu_inc(pcp) __this_cpu_add((pcp), 1) argument
651 # define __this_cpu_dec(pcp) __this_cpu_sub((pcp), 1) argument
656 # define __this_cpu_and_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) argument
659 # define __this_cpu_and_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) argument
662 # define __this_cpu_and_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) argument
665 # define __this_cpu_and_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) argument
667 # define __this_cpu_and(pcp, val) __pcpu_size_call(__this_cpu_and_, (pcp), (val)) argument
672 # define __this_cpu_or_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) argument
675 # define __this_cpu_or_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) argument
678 # define __this_cpu_or_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) argument
681 # define __this_cpu_or_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) argument
683 # define __this_cpu_or(pcp, val) __pcpu_size_call(__this_cpu_or_, (pcp), (val)) argument
688 # define __this_cpu_xor_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) argument
691 # define __this_cpu_xor_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) argument
694 # define __this_cpu_xor_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) argument
697 # define __this_cpu_xor_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) argument
699 # define __this_cpu_xor(pcp, val) __pcpu_size_call(__this_cpu_xor_, (pcp), (val)) argument
702 #define __this_cpu_generic_add_return(pcp, val) \ argument
710 # define __this_cpu_add_return_1(pcp, val) __this_cpu_generic_add_return(pcp, val) argument
713 # define __this_cpu_add_return_2(pcp, val) __this_cpu_generic_add_return(pcp, val) argument
716 # define __this_cpu_add_return_4(pcp, val) __this_cpu_generic_add_return(pcp, val) argument
719 # define __this_cpu_add_return_8(pcp, val) __this_cpu_generic_add_return(pcp, val) argument
721 # define __this_cpu_add_return(pcp, val) \ argument
725 #define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(val)) argument
726 #define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1) argument
727 #define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1) argument
729 #define __this_cpu_generic_xchg(pcp, nval) \ argument
738 # define __this_cpu_xchg_1(pcp, nval) __this_cpu_generic_xchg(pcp, nval) argument
741 # define __this_cpu_xchg_2(pcp, nval) __this_cpu_generic_xchg(pcp, nval) argument
744 # define __this_cpu_xchg_4(pcp, nval) __this_cpu_generic_xchg(pcp, nval) argument
747 # define __this_cpu_xchg_8(pcp, nval) __this_cpu_generic_xchg(pcp, nval) argument
749 # define __this_cpu_xchg(pcp, nval) \ argument
753 #define __this_cpu_generic_cmpxchg(pcp, oval, nval) \ argument
764 # define __this_cpu_cmpxchg_1(pcp, oval, nval) __this_cpu_generic_cmpxchg(pcp, oval, nval) argument
767 # define __this_cpu_cmpxchg_2(pcp, oval, nval) __this_cpu_generic_cmpxchg(pcp, oval, nval) argument
770 # define __this_cpu_cmpxchg_4(pcp, oval, nval) __this_cpu_generic_cmpxchg(pcp, oval, nval) argument
773 # define __this_cpu_cmpxchg_8(pcp, oval, nval) __this_cpu_generic_cmpxchg(pcp, oval, nval) argument
775 # define __this_cpu_cmpxchg(pcp, oval, nval) \ argument