Symbol: combined
arch/s390/include/asm/sclp.h
68
unsigned int combined;
arch/s390/kernel/perf_cpum_cf_events.c
1061
combined = merge_attr(cfvn, csvn, model);
arch/s390/kernel/perf_cpum_cf_events.c
1062
if (combined)
arch/s390/kernel/perf_cpum_cf_events.c
1063
cpumcf_pmu_events_group.attrs = combined;
arch/s390/kernel/perf_cpum_cf_events.c
996
struct attribute **combined, **model, **cfvn, **csvn;
arch/s390/kernel/smp.c
705
info->combined = info->configured;
arch/s390/kernel/smp.c
769
for (i = 0; i < info->combined; i++) {
arch/s390/kernel/smp.c
790
for (cpu = 0; cpu < info->combined; cpu++)
arch/s390/kernel/smp.c
796
if (cpu >= info->combined)
arch/s390/kernel/smp.c
808
for (cpu = 0; cpu < info->combined; cpu++) {
drivers/iio/proximity/sx9310.c
784
u32 combined[SX9310_NUM_CHANNELS];
drivers/iio/proximity/sx9310.c
799
if (count < 0 || count > ARRAY_SIZE(combined))
drivers/iio/proximity/sx9310.c
802
combined, count);
drivers/iio/proximity/sx9310.c
807
comb_mask |= BIT(combined[i]);
drivers/net/bonding/bond_main.c
3369
} *combined, _combined;
drivers/net/bonding/bond_main.c
3375
combined = skb_header_pointer(skb, 0, sizeof(_combined), &_combined);
drivers/net/bonding/bond_main.c
3376
if (!combined || combined->ip6.nexthdr != NEXTHDR_ICMP ||
drivers/net/bonding/bond_main.c
3377
(combined->icmp6.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION &&
drivers/net/bonding/bond_main.c
3378
combined->icmp6.icmp6_type != NDISC_NEIGHBOUR_ADVERTISEMENT))
drivers/net/bonding/bond_main.c
3381
saddr = &combined->ip6.saddr;
drivers/net/bonding/bond_main.c
3382
daddr = &combined->ip6.daddr;
drivers/net/bonding/bond_main.c
5260
} *combined, _combined;
drivers/net/bonding/bond_main.c
5272
combined = skb_header_pointer(skb, skb_mac_header_len(skb),
drivers/net/bonding/bond_main.c
5275
if (combined && combined->ip6.nexthdr == NEXTHDR_ICMP &&
drivers/net/bonding/bond_main.c
5276
(combined->icmp6.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION ||
drivers/net/bonding/bond_main.c
5277
combined->icmp6.icmp6_type == NDISC_NEIGHBOUR_ADVERTISEMENT))
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
609
unsigned int rx, tx, combined;
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
623
combined = min(rx, tx);
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
625
channels->max_combined = combined;
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
633
combined = min(rx, tx);
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
634
rx -= combined;
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
635
tx -= combined;
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
637
channels->combined_count = combined;
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
654
unsigned int rx, rx_curr, tx, tx_curr, combined;
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
668
combined = min(rx, tx);
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
686
if (channels->combined_count > combined) {
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
689
combined);
drivers/net/ethernet/intel/ice/devlink/devlink.c
248
combined(DEVLINK_INFO_VERSION_GENERIC_FW_UNDI, ice_info_orom_ver, ice_info_pending_orom_ver),
drivers/net/ethernet/intel/ice/devlink/devlink.c
249
combined("fw.psid.api", ice_info_nvm_ver, ice_info_pending_nvm_ver),
drivers/net/ethernet/intel/ice/devlink/devlink.c
250
combined(DEVLINK_INFO_VERSION_GENERIC_FW_BUNDLE_ID, ice_info_eetrack, ice_info_pending_eetrack),
drivers/net/ethernet/intel/ice/devlink/devlink.c
254
combined("fw.netlist", ice_info_netlist_ver, ice_info_pending_netlist_ver),
drivers/net/ethernet/intel/ice/devlink/devlink.c
255
combined("fw.netlist.build", ice_info_netlist_build, ice_info_pending_netlist_build),
drivers/net/ethernet/intel/ice/ice_ethtool.c
3793
u32 combined = 0;
drivers/net/ethernet/intel/ice/ice_ethtool.c
3799
combined += min(q_vector->num_ring_tx, q_vector->num_ring_rx);
drivers/net/ethernet/intel/ice/ice_ethtool.c
3802
return combined;
drivers/net/ethernet/intel/idpf/idpf_ethtool.c
525
u16 combined;
drivers/net/ethernet/intel/idpf/idpf_ethtool.c
532
combined = min(num_txq, num_rxq);
drivers/net/ethernet/intel/idpf/idpf_ethtool.c
543
ch->combined_count = combined;
drivers/net/ethernet/intel/idpf/idpf_ethtool.c
544
ch->rx_count = num_rxq - combined;
drivers/net/ethernet/intel/idpf/idpf_ethtool.c
545
ch->tx_count = num_txq - combined;
drivers/s390/char/sclp.h
215
info->combined = sccb->nr_configured + sccb->nr_standby;
drivers/s390/char/sclp.h
217
info->combined * sizeof(struct sclp_core_entry));
drivers/tty/serial/mps2-uart.c
278
MAKE_NAME(-combined), mps_port);
include/uapi/linux/pkt_cls.h
90
#define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK))
include/uapi/linux/pkt_cls.h
91
#define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
lib/siphash.c
218
u64 combined = (u64)second << 32 | first;
lib/siphash.c
220
v3 ^= combined;
lib/siphash.c
223
v0 ^= combined;
lib/siphash.c
332
u64 combined = (u64)second << 32 | first;
lib/siphash.c
334
v3 ^= combined;
lib/siphash.c
336
v0 ^= combined;
lib/siphash.c
351
u64 combined = (u64)second << 32 | first;
lib/siphash.c
353
v3 ^= combined;
lib/siphash.c
355
v0 ^= combined;
lib/siphash.c
372
u64 combined = (u64)second << 32 | first;
lib/siphash.c
374
v3 ^= combined;
lib/siphash.c
376
v0 ^= combined;
lib/siphash.c
377
combined = (u64)forth << 32 | third;
lib/siphash.c
378
v3 ^= combined;
lib/siphash.c
380
v0 ^= combined;
net/core/secure_seq.c
59
} __aligned(SIPHASH_ALIGNMENT) combined = {
net/core/secure_seq.c
69
st.hash64 = siphash(&combined, offsetofend(typeof(combined), dport),
net/core/secure_seq.c
88
} __aligned(SIPHASH_ALIGNMENT) combined = {
net/core/secure_seq.c
95
return siphash(&combined, offsetofend(typeof(combined), dport),
net/ipv6/route.c
1551
} __aligned(SIPHASH_ALIGNMENT) combined = {
net/ipv6/route.c
1560
combined.src = *src;
net/ipv6/route.c
1562
val = siphash(&combined, sizeof(combined), &rt6_exception_key);
net/ipv6/syncookies.c
51
} __aligned(SIPHASH_ALIGNMENT) combined = {
net/ipv6/syncookies.c
60
return siphash(&combined, offsetofend(typeof(combined), dport),
net/netfilter/nf_conntrack_expect.c
100
combined.dport = (__force __u16)tuple->dst.u.all;
net/netfilter/nf_conntrack_expect.c
101
combined.l3num = tuple->src.l3num;
net/netfilter/nf_conntrack_expect.c
102
combined.protonum = tuple->dst.protonum;
net/netfilter/nf_conntrack_expect.c
104
hash = siphash(&combined, sizeof(combined), &nf_ct_expect_hashrnd);
net/netfilter/nf_conntrack_expect.c
91
} __aligned(SIPHASH_ALIGNMENT) combined;
net/netfilter/nf_conntrack_expect.c
96
memset(&combined, 0, sizeof(combined));
net/netfilter/nf_conntrack_expect.c
98
combined.dst_addr = tuple->dst.u3;
net/netfilter/nf_conntrack_expect.c
99
combined.net_mix = net_hash_mix(n);
net/netfilter/nf_nat_core.c
162
} __aligned(SIPHASH_ALIGNMENT) combined;
net/netfilter/nf_nat_core.c
166
memset(&combined, 0, sizeof(combined));
net/netfilter/nf_nat_core.c
169
combined.src = tuple->src;
net/netfilter/nf_nat_core.c
170
combined.net_mix = net_hash_mix(net);
net/netfilter/nf_nat_core.c
171
combined.protonum = tuple->dst.protonum;
net/netfilter/nf_nat_core.c
175
combined.zone = zone->id;
net/netfilter/nf_nat_core.c
177
hash = siphash(&combined, sizeof(combined), &nf_nat_hash_rnd);
tools/include/uapi/linux/pkt_cls.h
59
#define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK))
tools/include/uapi/linux/pkt_cls.h
60
#define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
tools/perf/builtin-lock.c
409
st->combined = 1;
tools/perf/builtin-lock.c
448
if (combine_locks && st->combined)
tools/perf/util/lock-contention.h
53
int combined;
tools/perf/util/metricgroup.c
1214
struct expr_parse_ctx **combined)
tools/perf/util/metricgroup.c
1222
*combined = expr__ctx_new();
tools/perf/util/metricgroup.c
1223
if (!*combined)
tools/perf/util/metricgroup.c
1234
ret = expr__add_id(*combined, dup);
tools/perf/util/metricgroup.c
1242
expr__ctx_free(*combined);
tools/perf/util/metricgroup.c
1243
*combined = NULL;
tools/perf/util/metricgroup.c
1408
struct expr_parse_ctx *combined = NULL;
tools/perf/util/metricgroup.c
1412
ret = build_combined_expr_ctx(&metric_list, &combined);
tools/perf/util/metricgroup.c
1414
if (!ret && combined && hashmap__size(combined->ids)) {
tools/perf/util/metricgroup.c
1415
ret = parse_ids(metric_no_merge, fake_pmu, combined,
tools/perf/util/metricgroup.c
1421
if (combined)
tools/perf/util/metricgroup.c
1422
expr__ctx_free(combined);