/linux-6.1.9/samples/bpf/ |
D | bpf_insn.h | 10 #define BPF_ALU64_REG(OP, DST, SRC) \ argument 13 .dst_reg = DST, \ 18 #define BPF_ALU32_REG(OP, DST, SRC) \ argument 21 .dst_reg = DST, \ 28 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument 31 .dst_reg = DST, \ 36 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument 39 .dst_reg = DST, \ 46 #define BPF_MOV64_REG(DST, SRC) \ argument 49 .dst_reg = DST, \ [all …]
|
/linux-6.1.9/tools/include/linux/ |
D | filter.h | 34 #define BPF_ALU64_REG(OP, DST, SRC) \ argument 37 .dst_reg = DST, \ 42 #define BPF_ALU32_REG(OP, DST, SRC) \ argument 45 .dst_reg = DST, \ 52 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument 55 .dst_reg = DST, \ 60 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument 63 .dst_reg = DST, \ 70 #define BPF_ENDIAN(TYPE, DST, LEN) \ argument 73 .dst_reg = DST, \ [all …]
|
/linux-6.1.9/tools/testing/selftests/net/ |
D | veth.sh | 8 readonly DST=1 11 readonly NS_DST=$BASE$DST 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 110 ip netns exec $BASE$DST ./udpgso_bench_rx -C 1000 -R 10 & 114 ip netns exec $NS_SRC ./udpgso_bench_tx -4 -s 13000 -S 1300 -M 1 -D $BM_NET_V4$DST 147 ip netns exec $NS_DST ethtool -L veth$DST rx $i tx $i 153 ip netns exec $NS_DST ethtool -L veth$DST rx $cur_cpu tx $cur_cpu 165 ip netns exec $NS_SRC ./udpgso_bench_tx -4 -s 1000 -M 300 -D $BM_NET_V4$DST [all …]
|
D | udpgro_fwd.sh | 7 readonly DST=1 10 readonly NS_DST=$BASE$DST 42 ip link add name veth$SRC type veth peer name veth$DST 44 for ns in $SRC $DST; do 50 ip -n $NS_DST link set veth$DST xdp object ${BPF_FILE} section xdp 2>/dev/null 72 for ns in $SRC $DST; do 77 for ns in $SRC $DST; do 168 ip netns exec $NS_DST bash -c "echo 2 > /sys/class/net/veth$DST/queues/rx-0/rps_cpus" 204 run_test "No GRO" $BM_NET$DST 10 0 208 ip netns exec $NS_DST ethtool -K veth$DST rx-gro-list on [all …]
|
/linux-6.1.9/include/linux/ |
D | filter.h | 92 #define BPF_ALU64_REG(OP, DST, SRC) \ argument 95 .dst_reg = DST, \ 100 #define BPF_ALU32_REG(OP, DST, SRC) \ argument 103 .dst_reg = DST, \ 110 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument 113 .dst_reg = DST, \ 118 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument 121 .dst_reg = DST, \ 128 #define BPF_ENDIAN(TYPE, DST, LEN) \ argument 131 .dst_reg = DST, \ [all …]
|
/linux-6.1.9/kernel/bpf/ |
D | core.c | 55 #define DST regs[insn->dst_reg] macro 1684 DST = DST OP (SRC & 63); \ in ___bpf_prog_run() 1687 DST = (u32) DST OP ((u32) SRC & 31); \ in ___bpf_prog_run() 1690 DST = DST OP IMM; \ in ___bpf_prog_run() 1693 DST = (u32) DST OP (u32) IMM; \ in ___bpf_prog_run() 1698 DST = DST OP SRC; \ in ___bpf_prog_run() 1701 DST = (u32) DST OP (u32) SRC; \ in ___bpf_prog_run() 1704 DST = DST OP IMM; \ in ___bpf_prog_run() 1707 DST = (u32) DST OP (u32) IMM; \ in ___bpf_prog_run() 1720 DST = (u32) -DST; in ___bpf_prog_run() [all …]
|
/linux-6.1.9/arch/arc/lib/ |
D | memcpy-archs-unaligned.S | 12 # define LOADX(DST,RX) ldd.ab DST, [RX, 8] argument 17 # define LOADX(DST,RX) ld.ab DST, [RX, 4] argument
|
D | memcpy-archs.S | 25 # define LOADX(DST,RX) ldd.ab DST, [RX, 8] argument 30 # define LOADX(DST,RX) ld.ab DST, [RX, 4] argument
|
/linux-6.1.9/scripts/ |
D | objdiff | 98 DST="`git rev-parse --short HEAD`" 101 DST="`git rev-parse --short $2`" 111 DSTD="$TMPD/$DST"
|
/linux-6.1.9/arch/x86/crypto/ |
D | aegis128-aesni-asm.S | 26 #define DST %rcx macro 143 mov DST, %r9 392 movdq\a T0, (\i * 0x10)(DST) 420 or DST, %r8 433 add $0x50, DST 445 add $0x50, DST 546 movdq\a MSG, (\i * 0x10)(DST) 574 or DST, %r8 587 add $0x50, DST 599 add $0x50, DST
|
/linux-6.1.9/drivers/net/ethernet/intel/iavf/ |
D | iavf_adv_rss.c | 22 VIRTCHNL_ADD_PROTO_HDR_FIELD_BIT(hdr, IPV4, DST); in iavf_fill_adv_rss_ip4_hdr() 39 VIRTCHNL_ADD_PROTO_HDR_FIELD_BIT(hdr, IPV6, DST); in iavf_fill_adv_rss_ip6_hdr()
|
D | iavf_fdir.c | 263 VIRTCHNL_ADD_PROTO_HDR_FIELD_BIT(hdr, IPV4, DST); in iavf_fill_fdir_ip4_hdr() 309 VIRTCHNL_ADD_PROTO_HDR_FIELD_BIT(hdr, IPV6, DST); in iavf_fill_fdir_ip6_hdr()
|
/linux-6.1.9/tools/testing/selftests/bpf/ |
D | test_sock_addr.c | 834 #define STORE_IPV6_WORD_N(DST, SRC, N) \ in sendmsg6_rw_dst_asm_prog_load() argument 837 offsetof(struct bpf_sock_addr, DST[N])) in sendmsg6_rw_dst_asm_prog_load() 839 #define STORE_IPV6(DST, SRC) \ in sendmsg6_rw_dst_asm_prog_load() argument 840 STORE_IPV6_WORD_N(DST, SRC, 0), \ in sendmsg6_rw_dst_asm_prog_load() 841 STORE_IPV6_WORD_N(DST, SRC, 1), \ in sendmsg6_rw_dst_asm_prog_load() 842 STORE_IPV6_WORD_N(DST, SRC, 2), \ in sendmsg6_rw_dst_asm_prog_load() 843 STORE_IPV6_WORD_N(DST, SRC, 3) in sendmsg6_rw_dst_asm_prog_load()
|
/linux-6.1.9/drivers/media/pci/bt8xx/ |
D | Kconfig | 38 the Nebula cards, the Pinnacle PCTV cards, the Twinhan DST cards,
|
/linux-6.1.9/Documentation/admin-guide/media/ |
D | bt8xx.rst | 75 - Old TwinHan DST cards or clones with or without CA slot and not 123 Twinhan DST and clones 113
|
D | bttv-cardlist.rst | 470 - Twinhan DST + clones
|
D | bttv.rst | 1555 - DST Card/DST-IP (bt878, twinhan asic) VP-1020 1563 - DST-CI Card (DVB Satellite) VP-1030
|
/linux-6.1.9/arch/sh/lib/ |
D | checksum.S | 192 ! r5: char *DST
|
D | memcpy-sh4.S | 165 ! r4 --> [ ... ] DST [ ... ] SRC
|
/linux-6.1.9/arch/x86/net/ |
D | bpf_jit_comp.c | 71 #define EMIT_mov(DST, SRC) \ argument 73 if (DST != SRC) \ 74 EMIT3(add_2mod(0x48, DST, SRC), 0x89, add_2reg(0xC0, DST, SRC)); \
|
/linux-6.1.9/arch/sparc/lib/ |
D | M7memcpy.S | 201 andcc %o5, 7, %o5 ! bytes till DST 8 byte aligned 299 ! DST is 8-byte aligned, src is not 893 add %o0, 4, %o0 ! advance DST by 4
|
/linux-6.1.9/Documentation/filesystems/ |
D | vfat.rst | 156 cases in presence of DST - time stamps in a different DST
|
/linux-6.1.9/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4_tc_flower.c | 52 PEDIT_FIELDS(IP4_, DST, 4, nat_lip, 0),
|
/linux-6.1.9/Documentation/virt/kvm/x86/ |
D | timekeeping.rst | 256 bit 0 = 0 (DST off) / 1 (DST enabled)
|
/linux-6.1.9/arch/m68k/ifpsp060/src/ |
D | fpsp.S | 11993 fmovm.x DST(%a1),&0x80 # return INF result in fp0 13768 fmovm.x DST(%a1),&0x80 # load dst op 15490 fmovm.x DST(%a1),&0x80 # return dst INF 15856 # If the DST exponent is > the SRC exponent, set the DST exponent # 15858 # DST exponent was scaled by. If the SRC exponent is greater or equal, #
|