Lines Matching refs:t
689 #define ___bpf_treg_cnt(t) \ argument
690 __builtin_choose_expr(sizeof(t) == 1, 1, \
691 __builtin_choose_expr(sizeof(t) == 2, 1, \
692 __builtin_choose_expr(sizeof(t) == 4, 1, \
693 __builtin_choose_expr(sizeof(t) == 8, 1, \
694 __builtin_choose_expr(sizeof(t) == 16, 2, \
698 #define ___bpf_reg_cnt1(t, x) (___bpf_reg_cnt0() + ___bpf_treg_cnt(t)) argument
699 #define ___bpf_reg_cnt2(t, x, args...) (___bpf_reg_cnt1(args) + ___bpf_treg_cnt(t)) argument
700 #define ___bpf_reg_cnt3(t, x, args...) (___bpf_reg_cnt2(args) + ___bpf_treg_cnt(t)) argument
701 #define ___bpf_reg_cnt4(t, x, args...) (___bpf_reg_cnt3(args) + ___bpf_treg_cnt(t)) argument
702 #define ___bpf_reg_cnt5(t, x, args...) (___bpf_reg_cnt4(args) + ___bpf_treg_cnt(t)) argument
703 #define ___bpf_reg_cnt6(t, x, args...) (___bpf_reg_cnt5(args) + ___bpf_treg_cnt(t)) argument
704 #define ___bpf_reg_cnt7(t, x, args...) (___bpf_reg_cnt6(args) + ___bpf_treg_cnt(t)) argument
705 #define ___bpf_reg_cnt8(t, x, args...) (___bpf_reg_cnt7(args) + ___bpf_treg_cnt(t)) argument
706 #define ___bpf_reg_cnt9(t, x, args...) (___bpf_reg_cnt8(args) + ___bpf_treg_cnt(t)) argument
707 #define ___bpf_reg_cnt10(t, x, args...) (___bpf_reg_cnt9(args) + ___bpf_treg_cnt(t)) argument
708 #define ___bpf_reg_cnt11(t, x, args...) (___bpf_reg_cnt10(args) + ___bpf_treg_cnt(t)) argument
709 #define ___bpf_reg_cnt12(t, x, args...) (___bpf_reg_cnt11(args) + ___bpf_treg_cnt(t)) argument
712 #define ___bpf_union_arg(t, x, n) \ argument
713 …__builtin_choose_expr(sizeof(t) == 1, ({ union { __u8 z[1]; t x; } ___t = { .z = {ctx[n]}}; ___t.x…
714 …__builtin_choose_expr(sizeof(t) == 2, ({ union { __u16 z[1]; t x; } ___t = { .z = {ctx[n]} }; ___t…
715 …__builtin_choose_expr(sizeof(t) == 4, ({ union { __u32 z[1]; t x; } ___t = { .z = {ctx[n]} }; ___t…
716 …__builtin_choose_expr(sizeof(t) == 8, ({ union { __u64 z[1]; t x; } ___t = {.z = {ctx[n]} }; ___t.…
717 …__builtin_choose_expr(sizeof(t) == 16, ({ union { __u64 z[2]; t x; } ___t = {.z = {ctx[n], ctx[n +…
721 #define ___bpf_ctx_arg1(n, t, x) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt1(t, x)) argument
722 #define ___bpf_ctx_arg2(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt2(t, x, args))… argument
723 #define ___bpf_ctx_arg3(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt3(t, x, args))… argument
724 #define ___bpf_ctx_arg4(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt4(t, x, args))… argument
725 #define ___bpf_ctx_arg5(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt5(t, x, args))… argument
726 #define ___bpf_ctx_arg6(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt6(t, x, args))… argument
727 #define ___bpf_ctx_arg7(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt7(t, x, args))… argument
728 #define ___bpf_ctx_arg8(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt8(t, x, args))… argument
729 #define ___bpf_ctx_arg9(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt9(t, x, args))… argument
730 #define ___bpf_ctx_arg10(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt10(t, x, args… argument
731 #define ___bpf_ctx_arg11(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt11(t, x, args… argument
732 #define ___bpf_ctx_arg12(n, t, x, args...) , ___bpf_union_arg(t, x, n - ___bpf_reg_cnt12(t, x, args… argument
736 #define ___bpf_ctx_decl1(t, x) , t x argument
737 #define ___bpf_ctx_decl2(t, x, args...) , t x ___bpf_ctx_decl1(args) argument
738 #define ___bpf_ctx_decl3(t, x, args...) , t x ___bpf_ctx_decl2(args) argument
739 #define ___bpf_ctx_decl4(t, x, args...) , t x ___bpf_ctx_decl3(args) argument
740 #define ___bpf_ctx_decl5(t, x, args...) , t x ___bpf_ctx_decl4(args) argument
741 #define ___bpf_ctx_decl6(t, x, args...) , t x ___bpf_ctx_decl5(args) argument
742 #define ___bpf_ctx_decl7(t, x, args...) , t x ___bpf_ctx_decl6(args) argument
743 #define ___bpf_ctx_decl8(t, x, args...) , t x ___bpf_ctx_decl7(args) argument
744 #define ___bpf_ctx_decl9(t, x, args...) , t x ___bpf_ctx_decl8(args) argument
745 #define ___bpf_ctx_decl10(t, x, args...) , t x ___bpf_ctx_decl9(args) argument
746 #define ___bpf_ctx_decl11(t, x, args...) , t x ___bpf_ctx_decl10(args) argument
747 #define ___bpf_ctx_decl12(t, x, args...) , t x ___bpf_ctx_decl11(args) argument