Home
last modified time | relevance | path

Searched refs:combined (Results 1 – 25 of 216) sorted by relevance

123456789

/Linux-v6.1/net/core/
Dsecure_seq.c62 } __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()
192 seq = siphash(&combined, offsetofend(typeof(combined), dport), in secure_dccpv6_sequence_number()
/Linux-v6.1/tools/testing/selftests/drivers/net/netdevsim/
Dtc-mq-visibility.sh40 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
/Linux-v6.1/lib/
Dsiphash.c218 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 = (u64)second << 32 | first; in hsiphash_4u32() local
[all …]
/Linux-v6.1/Documentation/ABI/testing/
Dsysfs-bus-iio-sx93107 near the combined sensor. The combined sensor presents
/Linux-v6.1/drivers/net/ethernet/amd/xgbe/
Dxgbe-ethtool.c694 unsigned int rx, tx, combined; in xgbe_get_channels() local
708 combined = min(rx, tx); in xgbe_get_channels()
710 channels->max_combined = combined; in xgbe_get_channels()
718 combined = min(rx, tx); in xgbe_get_channels()
719 rx -= combined; in xgbe_get_channels()
720 tx -= combined; in xgbe_get_channels()
722 channels->combined_count = combined; in xgbe_get_channels()
739 unsigned int rx, rx_curr, tx, tx_curr, combined; in xgbe_set_channels() local
753 combined = min(rx, tx); in xgbe_set_channels()
771 if (channels->combined_count > combined) { in xgbe_set_channels()
[all …]
/Linux-v6.1/net/netfilter/
Dnf_conntrack_expect.c90 } __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), &nf_ct_expect_hashrnd); in nf_ct_expect_dst_hash()
Dnf_nat_core.c163 } __aligned(SIPHASH_ALIGNMENT) combined; in hash_by_src()
167 memset(&combined, 0, sizeof(combined)); in hash_by_src()
170 combined.src = tuple->src; in hash_by_src()
171 combined.net_mix = net_hash_mix(net); in hash_by_src()
172 combined.protonum = tuple->dst.protonum; in hash_by_src()
176 combined.zone = zone->id; in hash_by_src()
178 hash = siphash(&combined, sizeof(combined), &nf_nat_hash_rnd); in hash_by_src()
Dnf_conntrack_core.c221 } __aligned(SIPHASH_ALIGNMENT) combined; in hash_conntrack_raw()
225 memset(&combined, 0, sizeof(combined)); in hash_conntrack_raw()
228 combined.src = tuple->src; in hash_conntrack_raw()
229 combined.dst_addr = tuple->dst.u3; in hash_conntrack_raw()
230 combined.zone = zoneid; in hash_conntrack_raw()
231 combined.net_mix = net_hash_mix(net); in hash_conntrack_raw()
232 combined.dport = (__force __u16)tuple->dst.u.all; in hash_conntrack_raw()
233 combined.proto = tuple->dst.protonum; in hash_conntrack_raw()
235 return (u32)siphash(&combined, sizeof(combined), &nf_conntrack_hash_rnd); in hash_conntrack_raw()
/Linux-v6.1/tools/include/uapi/linux/
Dpkt_cls.h59 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) argument
60 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode) argument
/Linux-v6.1/tools/perf/util/
Dmetricgroup.c1421 struct expr_parse_ctx **combined) in build_combined_expr_ctx() argument
1429 *combined = expr__ctx_new(); in build_combined_expr_ctx()
1430 if (!*combined) in build_combined_expr_ctx()
1441 ret = expr__add_id(*combined, dup); in build_combined_expr_ctx()
1449 expr__ctx_free(*combined); in build_combined_expr_ctx()
1450 *combined = NULL; in build_combined_expr_ctx()
1568 struct expr_parse_ctx *combined = NULL; in parse_groups() local
1572 ret = build_combined_expr_ctx(&metric_list, &combined); in parse_groups()
1574 if (!ret && combined && hashmap__size(combined->ids)) { in parse_groups()
1575 ret = parse_ids(metric_no_merge, fake_pmu, combined, in parse_groups()
[all …]
Dlock-contention.h34 int combined; member
/Linux-v6.1/include/uapi/linux/
Dpkt_cls.h90 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK)) argument
91 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode) argument
/Linux-v6.1/Documentation/driver-api/media/drivers/
Dsh_mobile_ceu_camera.rst13 combined scales: sensor_scale * host_scale
81 3. Calculate new combined scales from "effective" input window to requested user
86 4. Calculate sensor output window by applying combined scales to real input
/Linux-v6.1/arch/arm64/boot/dts/amd/
Damd-seattle-xgbe-b.dtsi92 interrupts = /* Uses combined intr for both
105 interrupts = /* Uses combined intr for both
/Linux-v6.1/net/ipv6/
Dsyncookies.c50 } __aligned(SIPHASH_ALIGNMENT) combined = { in cookie_hash()
59 return siphash(&combined, offsetofend(typeof(combined), dport), in cookie_hash()
/Linux-v6.1/drivers/media/pci/ivtv/
DKconfig68 utilize write-combined caching on the framebuffer memory.
75 ranges that should be marked write-combined from the driver.
/Linux-v6.1/Documentation/features/debug/kprobes-on-ftrace/
Darch-support.txt4 # description: arch supports combined kprobes and ftrace live patching
/Linux-v6.1/tools/memory-model/litmus-tests/
DMP+polockmbonce+poacquiresilsil.litmus6 * Do spinlocks combined with smp_mb__after_spinlock() provide order
/Linux-v6.1/Documentation/devicetree/bindings/cpufreq/
Dimx-cpufreq-dt.txt5 "speed grading" value which are written in fuses. These bits are combined with
/Linux-v6.1/drivers/net/ethernet/intel/ice/
Dice_devlink.c209 #define combined(key, active, pending) \ macro
229 combined(DEVLINK_INFO_VERSION_GENERIC_FW_UNDI, ice_info_orom_ver, ice_info_pending_orom_ver),
230 combined("fw.psid.api", ice_info_nvm_ver, ice_info_pending_nvm_ver),
231 combined(DEVLINK_INFO_VERSION_GENERIC_FW_BUNDLE_ID, ice_info_eetrack, ice_info_pending_eetrack),
235 combined("fw.netlist", ice_info_netlist_ver, ice_info_pending_netlist_ver),
236 combined("fw.netlist.build", ice_info_netlist_build, ice_info_pending_netlist_build),
/Linux-v6.1/drivers/iio/light/
DKconfig425 tristate "SI1132 and SI1141/2/3/5/6/7 combined ALS, UV index and proximity sensor"
431 SI1141/2/3/5/6/7 combined ambient light, UV index and proximity sensor
519 featuring channels for combined visible + IR intensity and lux illuminance.
554 tristate "VCNL4000/4010/4020/4200 combined ALS and proximity sensor"
560 VCNL4010, VCNL4020, VCNL4200 combined ambient light and proximity
567 tristate "VCNL4035 combined ALS and proximity sensor"
574 combined ambient light (ALS) and proximity sensor. Currently only ALS
606 VL6180 combined ambient light, range and proximity sensor.
/Linux-v6.1/Documentation/devicetree/bindings/sound/
Dmax98373.txt24 - maxim,interleave-mode : For cases where a single combined channel
/Linux-v6.1/drivers/s390/char/
Dsclp.h218 info->combined = sccb->nr_configured + sccb->nr_standby; in sclp_fill_core_info()
220 info->combined * sizeof(struct sclp_core_entry)); in sclp_fill_core_info()
/Linux-v6.1/Documentation/security/
Dsiphash.rst96 } __aligned(SIPHASH_ALIGNMENT) combined = {
101 u64 h = siphash(&combined, offsetofend(typeof(combined), dport), &secret);
/Linux-v6.1/Documentation/driver-api/iio/
Dintro.rst33 combined functionality (e.g. light plus proximity sensor).

123456789