/linux-6.12.1/tools/include/linux/ |
D | filter.h | 34 #define BPF_ALU64_REG(OP, DST, SRC) \ argument 38 .src_reg = SRC, \ 42 #define BPF_ALU32_REG(OP, DST, SRC) \ argument 46 .src_reg = SRC, \ 80 #define BPF_MOV64_REG(DST, SRC) \ argument 84 .src_reg = SRC, \ 88 #define BPF_MOV32_REG(DST, SRC) \ argument 92 .src_reg = SRC, \ 116 #define BPF_MOVSX64_REG(DST, SRC, OFF) \ argument 120 .src_reg = SRC, \ [all …]
|
/linux-6.12.1/samples/bpf/ |
D | bpf_insn.h | 10 #define BPF_ALU64_REG(OP, DST, SRC) \ argument 14 .src_reg = SRC, \ 18 #define BPF_ALU32_REG(OP, DST, SRC) \ argument 22 .src_reg = SRC, \ 46 #define BPF_MOV64_REG(DST, SRC) \ argument 50 .src_reg = SRC, \ 54 #define BPF_MOV32_REG(DST, SRC) \ argument 58 .src_reg = SRC, \ 84 #define BPF_LD_IMM64_RAW(DST, SRC, IMM) \ argument 88 .src_reg = SRC, \ [all …]
|
/linux-6.12.1/tools/testing/selftests/net/ |
D | veth.sh | 7 readonly SRC=2 10 readonly NS_SRC=$BASE$SRC 42 ip link add name veth$SRC type veth peer name veth$DST 44 for ns in $SRC $DST; do 106 ip netns exec $BASE$SRC ping -qc 1 $BM_NET_V4$DST >/dev/null 146 ip netns exec $NS_SRC ethtool -L veth$SRC rx $i tx $i 152 ip netns exec $NS_SRC ethtool -L veth$SRC rx $cur_cpu tx $cur_cpu 174 ip netns exec $NS_SRC ethtool -L veth$SRC rx 3 tx 3 197 ip netns exec $NS_SRC ethtool -L veth$SRC rx 2 tx 2 229 chk_gro_flag "default - gro flag" $SRC off [all …]
|
D | udpgro_fwd.sh | 8 readonly SRC=2 11 readonly NS_SRC=$BASE$SRC 48 ip link add name veth$SRC type veth peer name veth$DST 50 for ns in $SRC $DST; do 78 for ns in $SRC $DST; do 83 for ns in $SRC $DST; do 90 local addr_src=$(ip -j -n $BASE$SRC link show dev vxlan6$SRC |jq -r '.[]["address"]') 91 ip -n $BASE$DST neigh add dev vxlan6$DST lladdr $addr_src $OL_NET_V6$SRC 92 ip -n $BASE$SRC neigh add dev vxlan6$SRC lladdr $addr_dst $OL_NET_V6$DST
|
/linux-6.12.1/arch/x86/crypto/ |
D | aegis128-aesni-asm.S | 25 #define SRC %rdx macro 85 add SRC, %r8 95 add SRC, %r8 106 add SRC, %r8 120 add SRC, %r8 249 mov SRC, %r8 255 movdqa 0x00(SRC), MSG 262 movdqa 0x10(SRC), MSG 269 movdqa 0x20(SRC), MSG 276 movdqa 0x30(SRC), MSG [all …]
|
D | aes-xts-avx-x86_64.S | 86 .set SRC, %rsi // Pointer to next source data define 592 vmovdqu8 0*VL(SRC), V0 593 vmovdqu8 1*VL(SRC), V1 594 vmovdqu8 2*VL(SRC), V2 595 vmovdqu8 3*VL(SRC), V3 601 vpxor 0*VL(SRC), KEY0, V0 602 vpxor 1*VL(SRC), KEY0, V1 603 vpxor 2*VL(SRC), KEY0, V2 604 vpxor 3*VL(SRC), KEY0, V3 647 add $4*VL, SRC [all …]
|
D | aes-gcm-avx10-x86_64.S | 594 .set SRC, %rcx define 751 vpxord 0*VL(SRC), RNDKEYLAST, RNDKEYLAST0 752 vpxord 1*VL(SRC), RNDKEYLAST, RNDKEYLAST1 753 vpxord 2*VL(SRC), RNDKEYLAST, RNDKEYLAST2 754 vpxord 3*VL(SRC), RNDKEYLAST, RNDKEYLAST3 763 add $4*VL, SRC 779 vmovdqu8 0*VL(SRC), GHASHDATA0 780 vmovdqu8 1*VL(SRC), GHASHDATA1 781 vmovdqu8 2*VL(SRC), GHASHDATA2 782 vmovdqu8 3*VL(SRC), GHASHDATA3 [all …]
|
D | aes-gcm-aesni-x86_64.S | 407 movdqu (SRC), TMP1 442 movdqu (SRC,%rax,2), TMP1 653 _xor_mem_to_reg \i*16(SRC), AESDATA\i, tmp=TMP0 688 .set SRC, %rcx define 760 sub $-8*16, SRC 810 sub $-8*16, SRC 896 _xor_mem_to_reg (SRC), TMP0, tmp=TMP1 899 movdqu (SRC), TMP1 916 add $16, SRC 945 mov SRC, RNDKEYLAST_PTR
|
/linux-6.12.1/include/linux/ |
D | filter.h | 102 #define BPF_ALU64_REG_OFF(OP, DST, SRC, OFF) \ argument 106 .src_reg = SRC, \ 110 #define BPF_ALU64_REG(OP, DST, SRC) \ argument 111 BPF_ALU64_REG_OFF(OP, DST, SRC, 0) 113 #define BPF_ALU32_REG_OFF(OP, DST, SRC, OFF) \ argument 117 .src_reg = SRC, \ 121 #define BPF_ALU32_REG(OP, DST, SRC) \ argument 122 BPF_ALU32_REG_OFF(OP, DST, SRC, 0) 168 #define BPF_MOV64_REG(DST, SRC) \ argument 172 .src_reg = SRC, \ [all …]
|
/linux-6.12.1/arch/arc/lib/ |
D | memcpy-archs-unaligned.S | 13 # define STOREX(SRC,RX) std.ab SRC, [RX, 8] argument 18 # define STOREX(SRC,RX) st.ab SRC, [RX, 4] argument
|
D | memcpy-archs.S | 26 # define STOREX(SRC,RX) std.ab SRC, [RX, 8] argument 31 # define STOREX(SRC,RX) st.ab SRC, [RX, 4] argument
|
/linux-6.12.1/Documentation/devicetree/bindings/clock/ |
D | st,nomadik.txt | 1 ST Microelectronics Nomadik SRC System Reset and Control 6 The Nomadik SRC controller is responsible of controlling chrystals, 9 Required properties for the SRC node: 11 - reg: must contain the SRC register base and size 13 Optional properties for the SRC node:
|
/linux-6.12.1/scripts/ |
D | objdiff | 97 SRC="`git rev-parse --short HEAD^`" 100 SRC="`git rev-parse --short $1`" 110 SRCD="$TMPD/$SRC"
|
/linux-6.12.1/sound/pci/ctxfi/ |
D | ctresource.c | 97 [SRC] = 0x1, 149 case SRC: in rsc_init() 178 case SRC: in rsc_uninit() 216 case SRC: in rsc_mgr_init() 261 case SRC: in rsc_mgr_uninit()
|
D | ctresource.h | 21 SRC, enumerator
|
D | ctatc.c | 112 [SRC] = { .create = src_mgr_create, 241 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; in atc_pcm_playback_prepare() 319 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; in atc_pcm_release_resources() 501 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; in atc_pcm_capture_get_resources() 724 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; in atc_pcm_capture_start() 784 struct src_mgr *src_mgr = atc->rsc_mgrs[SRC]; in spdif_passthru_playback_get_resources() 1189 src_mgr = atc->rsc_mgrs[SRC]; in atc_release_resources() 1409 src_mgr = atc->rsc_mgrs[SRC]; in atc_get_resources() 1506 atc_connect_dai(atc->rsc_mgrs[SRC], dai, in atc_connect_resources() 1517 atc_connect_dai(atc->rsc_mgrs[SRC], dai, in atc_connect_resources() [all …]
|
/linux-6.12.1/kernel/bpf/ |
D | core.c | 60 #define SRC regs[insn->src_reg] macro 1762 DST = DST OP (SRC & 63); \ in ___bpf_prog_run() 1765 DST = (u32) DST OP ((u32) SRC & 31); \ in ___bpf_prog_run() 1776 DST = DST OP SRC; \ in ___bpf_prog_run() 1779 DST = (u32) DST OP (u32) SRC; \ in ___bpf_prog_run() 1806 DST = (u32) SRC; in ___bpf_prog_run() 1809 DST = (u32)(s8) SRC; in ___bpf_prog_run() 1812 DST = (u32)(s16) SRC; in ___bpf_prog_run() 1822 DST = SRC; in ___bpf_prog_run() 1825 DST = (s8) SRC; in ___bpf_prog_run() [all …]
|
/linux-6.12.1/Documentation/devicetree/bindings/sound/ |
D | renesas,rsnd.txt | 11 - SRC : Sampling Rate Converter 34 See datasheet to check SRC/CTU/MIX/DVC connect-limitation. 59 * SRC (Sampling Rate Converter) 63 ------> [SRC] ------> 65 SRC can convert [xx]Hz to [yy]Hz. Then, it has below 2 modes 85 > amixer set "SRC Out Rate" on 87 > amixer set "SRC Out Rate" 48000 88 > amixer set "SRC Out Rate" 44100
|
/linux-6.12.1/tools/tracing/rtla/ |
D | Makefile.standalone | 11 SRC := $(wildcard src/*.c) 13 OBJ := $(SRC:.c=.o)
|
/linux-6.12.1/arch/sh/kernel/cpu/sh2a/ |
D | setup-sh7203.c | 38 SRC, IEBI, enumerator 125 INTC_IRQ(SRC, 244), INTC_IRQ(SRC, 245), 126 INTC_IRQ(SRC, 246), 161 { 0xfffe0c16, 0, 16, 4, /* IPR17 */ { RCAN1, SRC, IEBI, 0 } },
|
/linux-6.12.1/drivers/net/ |
D | LICENSE.SRC | 9 In addition to the disclaimers in the GPL, SRC expressly disclaims any 11 This software was developed at SRC for use in internal research, and the
|
/linux-6.12.1/tools/perf/Documentation/ |
D | perf-probe.txt | 160 [[GROUP:]EVENT=]FUNC[@SRC][:RLN|+OFFS|%return|;PTN] [ARG ...] 163 [[GROUP:]EVENT=]SRC:ALN [ARG ...] 166 [[GROUP:]EVENT=]SRC;PTN [ARG ...] 176 …that ';PTN' must be the end of the probe point definition. In addition, '@SRC' specifies a source… 177 …nt by the source line number or lazy matching by using 'SRC:ALN' or 'SRC;PTN' syntax, where 'SRC' … 217 "FUNC[@SRC][:RLN[+NUM|-RLN2]]|SRC[:ALN[+NUM|-ALN2]]" 221 probe syntax, 'SRC' means the source file path, 'ALN' is start line number, 223 many lines to show by using 'NUM'. Moreover, 'FUNC@SRC' combination is good
|
/linux-6.12.1/drivers/net/ethernet/intel/iavf/ |
D | iavf_adv_rss.c | 19 VIRTCHNL_ADD_PROTO_HDR_FIELD_BIT(hdr, IPV4, SRC); in iavf_fill_adv_rss_ip4_hdr() 36 VIRTCHNL_ADD_PROTO_HDR_FIELD_BIT(hdr, IPV6, SRC); in iavf_fill_adv_rss_ip6_hdr()
|
/linux-6.12.1/Documentation/virt/kvm/devices/ |
D | mpic.rst | 51 the main array of interrupt sources (a.k.a. "SRC" interrupts). 58 Access to non-SRC interrupts is not implemented through IRQ routing mechanisms.
|
/linux-6.12.1/arch/sh/kernel/cpu/sh4a/ |
D | setup-sh7770.c | 354 TMU, DMAC, I2S, SRC, GFX3D, SPI, SCIF, BBDMAC, enumerator 411 INTC_GROUP(SRC, SRC_RX, SRC_TX, SRC_SPDIF), 424 GPS, CAN, ATAPI, USB, YUV, REMOTE, VIDEO_IN, DU, SRC, I2S, 431 { 0xffe00008, 0, 32, 8, /* INT2PRI2 */ { DMAC, I2S, SRC, DU } },
|