/kernel/linux/linux-5.10/net/core/ |
H A D | secure_seq.c | 62 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_ts_off() 71 return siphash(&combined, offsetofend(typeof(combined), daddr), in secure_tcpv6_ts_off() 84 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_seq() 93 hash = siphash(&combined, offsetofend(typeof(combined), dport), in secure_tcpv6_seq() 107 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_ipv6_port_ephemeral() 114 return siphash(&combined, offsetofend(typeof(combined), dport), in secure_ipv6_port_ephemeral() 184 } __aligned(SIPHASH_ALIGNMENT) combined in secure_dccpv6_sequence_number() [all...] |
/kernel/linux/linux-6.6/net/core/ |
H A D | secure_seq.c | 62 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_ts_off() 71 return siphash(&combined, offsetofend(typeof(combined), daddr), in secure_tcpv6_ts_off() 84 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcpv6_seq() 93 hash = siphash(&combined, offsetofend(typeof(combined), dport), in secure_tcpv6_seq() 107 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_ipv6_port_ephemeral() 114 return siphash(&combined, offsetofend(typeof(combined), dport), in secure_ipv6_port_ephemeral() 184 } __aligned(SIPHASH_ALIGNMENT) combined in secure_dccpv6_sequence_number() [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/netdevsim/ |
H A D | tc-mq-visibility.sh | 40 ethtool -L $NDEV combined $n 47 ethtool -L $NDEV combined $n 55 ethtool -L $NDEV combined 1 58 ethtool -L $NDEV combined 4 65 ethtool -L $NDEV combined 1
|
/kernel/linux/linux-5.10/lib/ |
H A D | siphash.c | 219 u64 combined = (u64)second << 32 | first; in siphash_3u32() local 221 v3 ^= combined; in siphash_3u32() 224 v0 ^= combined; in siphash_3u32() 333 u64 combined = (u64)second << 32 | first; in hsiphash_2u32() local 335 v3 ^= combined; in hsiphash_2u32() 337 v0 ^= combined; in hsiphash_2u32() 352 u64 combined = (u64)second << 32 | first; in hsiphash_3u32() local 354 v3 ^= combined; in hsiphash_3u32() 356 v0 ^= combined; in hsiphash_3u32() 373 u64 combined in hsiphash_4u32() local [all...] |
/kernel/linux/linux-6.6/lib/ |
H A D | siphash.c | 218 u64 combined = (u64)second << 32 | first; in siphash_3u32() local 220 v3 ^= combined; in siphash_3u32() 223 v0 ^= combined; in siphash_3u32() 332 u64 combined = (u64)second << 32 | first; in hsiphash_2u32() local 334 v3 ^= combined; in hsiphash_2u32() 336 v0 ^= combined; in hsiphash_2u32() 351 u64 combined = (u64)second << 32 | first; in hsiphash_3u32() local 353 v3 ^= combined; in hsiphash_3u32() 355 v0 ^= combined; in hsiphash_3u32() 372 u64 combined in hsiphash_4u32() local [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/amd/xgbe/ |
H A D | xgbe-ethtool.c | 692 unsigned int rx, tx, combined; in xgbe_get_channels() local 706 combined = min(rx, tx); in xgbe_get_channels() 708 channels->max_combined = combined; in xgbe_get_channels() 716 combined = min(rx, tx); in xgbe_get_channels() 717 rx -= combined; in xgbe_get_channels() 718 tx -= combined; in xgbe_get_channels() 720 channels->combined_count = combined; in xgbe_get_channels() 728 netdev_err(netdev, "channel inputs: combined=%u, rx-only=%u, tx-only=%u\n", in xgbe_print_set_channels_input() 737 unsigned int rx, rx_curr, tx, tx_curr, combined; in xgbe_set_channels() local 751 combined in xgbe_set_channels() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/amd/xgbe/ |
H A D | xgbe-ethtool.c | 699 unsigned int rx, tx, combined; in xgbe_get_channels() local 713 combined = min(rx, tx); in xgbe_get_channels() 715 channels->max_combined = combined; in xgbe_get_channels() 723 combined = min(rx, tx); in xgbe_get_channels() 724 rx -= combined; in xgbe_get_channels() 725 tx -= combined; in xgbe_get_channels() 727 channels->combined_count = combined; in xgbe_get_channels() 735 netdev_err(netdev, "channel inputs: combined=%u, rx-only=%u, tx-only=%u\n", in xgbe_print_set_channels_input() 744 unsigned int rx, rx_curr, tx, tx_curr, combined; in xgbe_set_channels() local 758 combined in xgbe_set_channels() [all...] |
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nf_conntrack_expect.c | 90 } __aligned(SIPHASH_ALIGNMENT) combined; in nf_ct_expect_dst_hash() 95 memset(&combined, 0, sizeof(combined)); in nf_ct_expect_dst_hash() 97 combined.dst_addr = tuple->dst.u3; in nf_ct_expect_dst_hash() 98 combined.net_mix = net_hash_mix(n); in nf_ct_expect_dst_hash() 99 combined.dport = (__force __u16)tuple->dst.u.all; in nf_ct_expect_dst_hash() 100 combined.l3num = tuple->src.l3num; in nf_ct_expect_dst_hash() 101 combined.protonum = tuple->dst.protonum; in nf_ct_expect_dst_hash() 103 hash = siphash(&combined, sizeof(combined), in nf_ct_expect_dst_hash() [all...] |
H A D | nf_nat_core.c | 166 } __aligned(SIPHASH_ALIGNMENT) combined; in hash_by_src() 170 memset(&combined, 0, sizeof(combined)); in hash_by_src() 173 combined.src = tuple->src; in hash_by_src() 174 combined.net_mix = net_hash_mix(net); in hash_by_src() 175 combined.protonum = tuple->dst.protonum; in hash_by_src() 179 combined.zone = zone->id; in hash_by_src() 181 hash = siphash(&combined, sizeof(combined), &nf_nat_hash_rnd); in hash_by_src()
|
/kernel/linux/common_modules/newip/third_party/linux-5.10/net/newip/ |
H A D | ninet_hashtables.c | 77 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_tcp_nip_sequence_number() 86 hash = siphash(&combined, offsetofend(typeof(combined), dport), in secure_tcp_nip_sequence_number() 99 } __aligned(SIPHASH_ALIGNMENT) combined = { in secure_newip_port_ephemeral() 105 return siphash(&combined, offsetofend(typeof(combined), dport), in secure_newip_port_ephemeral()
|
/kernel/linux/linux-5.10/tools/include/uapi/linux/ |
H A D | pkt_cls.h | 54 * a combined opcode. 59 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) 60 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
H A D | pkt_cls.h | 81 * a combined opcode. 86 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) 87 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
|
/kernel/linux/linux-6.6/tools/include/uapi/linux/ |
H A D | pkt_cls.h | 54 * a combined opcode. 59 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) 60 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/ |
H A D | pkt_cls.h | 44 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) 45 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/ |
H A D | pkt_cls.h | 63 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) 64 #define TC_ACT_EXT_CMP(combined,opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
|
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/ |
H A D | pkt_cls.h | 63 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) 64 #define TC_ACT_EXT_CMP(combined,opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
|
/kernel/linux/linux-5.10/net/ipv6/ |
H A D | syncookies.c | 50 } __aligned(SIPHASH_ALIGNMENT) combined = { in cookie_hash() 59 return siphash(&combined, offsetofend(typeof(combined), dport), in cookie_hash()
|
/kernel/linux/linux-6.6/net/ipv6/ |
H A D | syncookies.c | 50 } __aligned(SIPHASH_ALIGNMENT) combined = { in cookie_hash() 59 return siphash(&combined, offsetofend(typeof(combined), dport), in cookie_hash()
|
/kernel/linux/linux-6.6/include/uapi/linux/ |
H A D | pkt_cls.h | 85 * a combined opcode. 90 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) 91 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | metricgroup.c | 312 * combined or shared groups, this metric may not care in setup_metric_events() 1399 * @combined: Out argument for result. 1402 struct expr_parse_ctx **combined) in build_combined_expr_ctx() 1410 *combined = expr__ctx_new(); in build_combined_expr_ctx() 1411 if (!*combined) in build_combined_expr_ctx() 1422 ret = expr__add_id(*combined, dup); in build_combined_expr_ctx() 1430 expr__ctx_free(*combined); in build_combined_expr_ctx() 1431 *combined = NULL; in build_combined_expr_ctx() 1553 struct expr_parse_ctx *combined = NULL; in parse_groups() local 1557 ret = build_combined_expr_ctx(&metric_list, &combined); in parse_groups() 1401 build_combined_expr_ctx(const struct list_head *metric_list, struct expr_parse_ctx **combined) build_combined_expr_ctx() argument [all...] |
H A D | lock-contention.h | 43 int combined; member
|
/kernel/linux/linux-5.10/arch/s390/include/asm/ |
H A D | sclp.h | 56 unsigned int combined; member
|
/kernel/linux/linux-6.6/arch/s390/include/asm/ |
H A D | sclp.h | 63 unsigned int combined; member
|
/kernel/linux/linux-5.10/drivers/clk/bcm/ |
H A D | clk-kona.c | 70 u64 combined; in scaled_div_build() local 75 combined = (u64)div_value * BILLION + billionths; in scaled_div_build() 76 combined <<= div->u.s.frac_width; in scaled_div_build() 78 return DIV_ROUND_CLOSEST_ULL(combined, BILLION); in scaled_div_build()
|
/kernel/linux/linux-6.6/drivers/clk/bcm/ |
H A D | clk-kona.c | 62 u64 combined; in scaled_div_build() local 67 combined = (u64)div_value * BILLION + billionths; in scaled_div_build() 68 combined <<= div->u.s.frac_width; in scaled_div_build() 70 return DIV_ROUND_CLOSEST_ULL(combined, BILLION); in scaled_div_build()
|