Home
last modified time | relevance | path

Searched full:rt2 (Results 1 – 25 of 25) sorted by relevance

/linux/arch/powerpc/crypto/
H A Dsha256-spe-asm.S40 #define rT2 r0 /* 32 bit temporaries */ macro
105 rotrwi rT2,e,25; /* 1: S1" = e rotr 25 */ \
108 xor rT0,rT0,rT2; /* 1: S1 = S1 xor S1" */ \
110 lwz rT2,off(rKP); /* 1: K */ \
117 add h,h,rT2; /* 1: temp1 = temp1 + K */ \
123 or rT2,a,b; /* 1: maj = a or b */ \
125 and rT2,rT2,c; /* 1: maj = maj and c */ \
127 or rT2,rT1,rT2; /* 1: maj = maj or maj' */ \
129 add rT3,rT3,rT2; /* 1: temp2 = S0 + maj */ \
132 rotrwi rT2,d,25; /* 2: S1" = e rotr 25 */ \
[all …]
H A Dsha1-spe-asm.S37 #define rT2 r11 macro
108 and rT2,b,c; /* 1: F' = B and C */ \
112 or rT2,rT2,rT1; /* 1: F = F' or F" */ \
117 add e,e,rT2; /* 1: E = E + F */ \
120 andc rT2,c,a; /* 2: F" = ~B and D */ \
122 or rT2,rT2,rT1; /* 2: F = F' or F" */ \
128 add d,d,rT2 /* 2: E = E + F */
131 and rT2,b,c; /* 1: F' = B and C */ \
135 or rT1,rT1,rT2; /* 1: F = F' or F" */ \
139 rotrwi rT2,a,27; /* 1: A' = A rotl 5 */ \
[all …]
/linux/arch/x86/crypto/
H A Ddes3_ede-asm_64.S59 #define RT2 %r14 macro
140 xorq (RW1, RT2, 8), RT0; \
150 xorq (RW1, RT2, 8), RT0; \
366 leaq s8(%rip), RT2; \
367 xorq (RT2, RT3, 8), to##0; \
368 leaq s6(%rip), RT2; \
369 xorq (RT2, RT1, 8), to##0; \
373 leaq s4(%rip), RT2; \
374 xorq (RT2, RT3, 8), to##0; \
375 leaq s2(%rip), RT2; \
[all …]
H A Dcamellia-x86_64-asm_64.S64 #define RT2 %r8 macro
92 movq (key_table + ((subkey) * 2) * 4)(CTX), RT2; \
95 xor2ror16(sp22000222, sp10011110, RT0, RT1, ab ## 0, RT2); \
97 xor2ror16(sp30333033, sp02220222, RT0, RT1, ab ## 0, RT2); \
99 xorq RT2, cd ## 0;
112 movq (key_table + ((kl) * 2) * 4)(CTX), RT2; \
113 orq l ## 0, RT2; \
114 shrq $32, RT2; \
115 xorq RT2, l ## 0; \
242 dec_inpack(RT2);
[all …]
H A Dblowfish-x86_64-asm_64.S46 #define RT2 %r8 macro
70 addl s3(CTX,RT2,4), RT0d; \
180 addl s1(CTX,RT2,4), RT0d; \
267 movq 8(RIO), RT2; \
268 bswapq RT2; \
269 xorq RT2, RX2; \
/linux/net/ipv6/
H A Dmip6.c291 struct rt2_hdr *rt2 = (struct rt2_hdr *)skb->data; in mip6_rthdr_input() local
292 int err = rt2->rt_hdr.nexthdr; in mip6_rthdr_input()
309 struct rt2_hdr *rt2; in mip6_rthdr_output() local
318 rt2 = (struct rt2_hdr *)skb_transport_header(skb); in mip6_rthdr_output()
319 rt2->rt_hdr.nexthdr = nexthdr; in mip6_rthdr_output()
320 rt2->rt_hdr.hdrlen = (x->props.header_len >> 3) - 1; in mip6_rthdr_output()
321 rt2->rt_hdr.type = IPV6_SRCRT_TYPE_2; in mip6_rthdr_output()
322 rt2->rt_hdr.segments_left = 1; in mip6_rthdr_output()
323 memset(&rt2->reserved, 0, sizeof(rt2->reserved)); in mip6_rthdr_output()
325 WARN_ON(rt2->rt_hdr.hdrlen != 2); in mip6_rthdr_output()
[all …]
/linux/arch/arm64/net/
H A Dbpf_jit.h96 #define A64_LS_PAIR(Rt, Rt2, Rn, offset, ls, type) \ argument
97 aarch64_insn_gen_load_store_pair(Rt, Rt2, Rn, offset, \
100 /* Rn -= 16; Rn[0] = Rt; Rn[8] = Rt2; */
101 #define A64_PUSH(Rt, Rt2, Rn) A64_LS_PAIR(Rt, Rt2, Rn, -16, STORE, PRE_INDEX) argument
102 /* Rt = Rn[0]; Rt2 = Rn[8]; Rn += 16; */
103 #define A64_POP(Rt, Rt2, Rn) A64_LS_PAIR(Rt, Rt2, Rn, 16, LOAD, POST_INDEX) argument
/linux/net/ipv4/
H A Dicmp.c489 struct rtable *rt, *rt2; in icmp_route_lookup() local
512 rt2 = rt; in icmp_route_lookup()
518 if (rt != rt2) in icmp_route_lookup()
534 rt2 = __ip_route_output_key(net, &fl4_dec); in icmp_route_lookup()
535 if (IS_ERR(rt2)) in icmp_route_lookup()
536 err = PTR_ERR(rt2); in icmp_route_lookup()
542 rt2 = ip_route_output_key(net, &fl4_2); in icmp_route_lookup()
543 if (IS_ERR(rt2)) { in icmp_route_lookup()
544 err = PTR_ERR(rt2); in icmp_route_lookup()
551 dscp, rt2->dst.dev) ? -EINVAL : 0; in icmp_route_lookup()
[all …]
/linux/arch/arm64/kernel/
H A Darmv8_deprecated.c83 * Syntax of SWP{B} instruction: SWP{B}<c> <Rt>, <Rt2>, [<Rn>]
85 * Rt2 = source
168 int rn, rt2, res = 0; in swp_handler() local
188 rt2 = aarch32_insn_extract_reg_num(instr, A32_RT2_OFFSET); in swp_handler()
191 data = (u32)regs->user_regs.regs[rt2]; in swp_handler()
/linux/tools/testing/selftests/net/
H A Dicmp.sh27 RT2=172.16.0.0/24
51 ip -netns $NS2 route add $RT2 via inet6 $H1_IP6
H A Dsrv6_hl2encap_red_l2vpn_test.sh111 # rt-4,rt-3,rt2. The H.L2Encaps.Red reduces the SID List in the SRH by removing
/linux/arch/mips/crypto/
H A Dcrc32-mips.c32 _ASM_MACRO_3R(OP, rt, rs, rt2, \
33 ".ifnc \\rt, \\rt2\n\t" \
34 ".error \"invalid operands \\\"" #OP " \\rt,\\rs,\\rt2\\\"\"\n\t" \
/linux/net/mpls/
H A Daf_mpls.c2510 struct mpls_route *rt0 = NULL, *rt2 = NULL; in resize_platform_label_table() local
2536 rt2 = mpls_rt_alloc(1, lo->addr_len, 0); in resize_platform_label_table()
2537 if (IS_ERR(rt2)) in resize_platform_label_table()
2539 rt2->rt_nh->nh_dev = lo; in resize_platform_label_table()
2540 rt2->rt_protocol = RTPROT_KERNEL; in resize_platform_label_table()
2541 rt2->rt_payload_type = MPT_IPV6; in resize_platform_label_table()
2542 rt2->rt_ttl_propagate = MPLS_TTL_PROP_DEFAULT; in resize_platform_label_table()
2543 rt2->rt_nh->nh_via_table = NEIGH_LINK_TABLE; in resize_platform_label_table()
2544 rt2->rt_nh->nh_via_alen = lo->addr_len; in resize_platform_label_table()
2545 memcpy(__mpls_nh_via(rt2, rt2->rt_nh), lo->dev_addr, in resize_platform_label_table()
[all …]
/linux/net/netfilter/
H A Dnf_conntrack_h323_main.c683 struct rtable *rt1, *rt2; in callforward_do_filter() local
692 if (!nf_ip_route(net, (struct dst_entry **)&rt2, in callforward_do_filter()
695 rt_nexthop(rt2, fl2.daddr) && in callforward_do_filter()
696 rt1->dst.dev == rt2->dst.dev) in callforward_do_filter()
698 dst_release(&rt2->dst); in callforward_do_filter()
706 struct rt6_info *rt1, *rt2; in callforward_do_filter() local
716 if (!nf_ip6_route(net, (struct dst_entry **)&rt2, in callforward_do_filter()
719 rt6_nexthop(rt2, &fl2.daddr)) && in callforward_do_filter()
720 rt1->dst.dev == rt2->dst.dev) in callforward_do_filter()
722 dst_release(&rt2->dst); in callforward_do_filter()
/linux/arch/arm/kernel/
H A Dswp_emulate.c12 * Syntax of SWP{B} instruction: SWP{B}<c> <Rt>, <Rt2>, [<Rn>]
14 * Rt2 = source
/linux/Documentation/devicetree/bindings/sound/
H A Drenesas,rz-ssi.yaml70 MID/RID value of SSI rt2 = 0x25f
/linux/arch/arm/probes/kprobes/
H A Dcheckers-thumb.c57 /* P U W | Rn | Rt | Rt2| imm8 |*/ in t32_check_stack()
H A Dactions-thumb.c163 int rt2 = (insn >> 8) & 0xf; in t32_emulate_ldrdstrd() local
167 register unsigned long rt2v asm("r1") = regs->uregs[rt2]; in t32_emulate_ldrdstrd()
181 regs->uregs[rt2] = rt2v; in t32_emulate_ldrdstrd()
/linux/net/mctp/
H A Droute.c805 struct mctp_route *rt2) in mctp_rt_compare_exact() argument
808 return rt1->dev->net == rt2->dev->net && in mctp_rt_compare_exact()
809 rt1->min == rt2->min && in mctp_rt_compare_exact()
810 rt1->max == rt2->max; in mctp_rt_compare_exact()
/linux/arch/arm/crypto/
H A Dsha1-armv7-neon.S55 #define RT2 r11 macro
591 add _c, RT2;
624 add _c, RT2;
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dnv50.c59 { 0x00000002, "RT2" },
/linux/arch/arm64/kvm/
H A Dsys_regs.c4009 int Rt2 = (esr >> 10) & 0x1f; in kvm_handle_cp_64() local
4020 * Make a 64-bit value out of Rt and Rt2. As we use the same trap in kvm_handle_cp_64()
4025 params.regval |= vcpu_get_reg(vcpu, Rt2) << 32; in kvm_handle_cp_64()
4037 vcpu_set_reg(vcpu, Rt2, upper_32_bits(params.regval)); in kvm_handle_cp_64()
/linux/drivers/gpu/drm/msm/registers/adreno/
H A Da6xx.xml3582 <bitfield name="RT2" low="8" high="11"/>
4954 <bitfield name="RT2" low="8" high="11"/>
5175 <bitfield name="RT2" low="8" high="11"/>
H A Da4xx.xml1013 <bitfield name="RT2" low="8" high="11"/>
H A Da5xx.xml1996 <bitfield name="RT2" low="8" high="11"/>