/openbmc/linux/arch/powerpc/crypto/ |
H A D | sha256-spe-asm.S | 40 #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 D | sha1-spe-asm.S | 37 #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 …]
|
/openbmc/linux/arch/x86/crypto/ |
H A D | des3_ede-asm_64.S | 59 #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 D | camellia-x86_64-asm_64.S | 64 #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 D | blowfish-x86_64-asm_64.S | 46 #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; \
|
/openbmc/linux/net/ipv6/ |
H A D | mip6.c | 291 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 …]
|
/openbmc/qemu/target/mips/tcg/ |
H A D | dsp_helper.c | 1257 uint8_t rt3, rt2, rt1, rt0; \ 1261 MIPSDSP_SPLIT32_8(rt, rt3, rt2, rt1, rt0); \ 1264 tempC = ((uint16_t)rs2 - (uint16_t)rt2 + var) >> 1; \ 1430 uint8_t rt6, rt4, rt2, rt0; in helper_precr_ob_qh() local 1439 rt2 = (rt >> 16) & MIPSDSP_Q0; in helper_precr_ob_qh() 1445 ((uint64_t)rt2 << 8) | (uint64_t)rt0; in helper_precr_ob_qh() 1452 * In case sa == 0, use rt2, rt0, rs2, rs0. 1461 uint16_t rt3, rt2, rt1, rt0; \ 1465 MIPSDSP_SPLIT64_16(rt, rt3, rt2, rt1, rt0); \ 1468 tempD = rt2 << var; \ [all …]
|
/openbmc/linux/net/ipv4/ |
H A D | icmp.c | 494 struct rtable *rt, *rt2; in icmp_route_lookup() local 517 rt2 = rt; in icmp_route_lookup() 522 if (rt != rt2) in icmp_route_lookup() 535 rt2 = __ip_route_output_key(net, &fl4_dec); in icmp_route_lookup() 536 if (IS_ERR(rt2)) in icmp_route_lookup() 537 err = PTR_ERR(rt2); in icmp_route_lookup() 543 rt2 = ip_route_output_key(net, &fl4_2); in icmp_route_lookup() 544 if (IS_ERR(rt2)) { in icmp_route_lookup() 545 err = PTR_ERR(rt2); in icmp_route_lookup() 552 RT_TOS(tos), rt2->dst.dev); in icmp_route_lookup() [all …]
|
H A D | ip_options.c | 593 struct rtable *rt2; in ip_options_rcv_srr() local 621 rt2 = skb_rtable(skb); in ip_options_rcv_srr() 622 if (err || (rt2->rt_type != RTN_UNICAST && rt2->rt_type != RTN_LOCAL)) { in ip_options_rcv_srr() 628 if (rt2->rt_type != RTN_LOCAL) in ip_options_rcv_srr()
|
/openbmc/linux/arch/arm64/net/ |
H A D | bpf_jit.h | 96 #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
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | icmp.sh | 27 RT2=172.16.0.0/24 53 ip -netns $NS2 route add $RT2 via inet6 $H1_IP6
|
/openbmc/qemu/target/arm/ |
H A D | syndrome.h | 192 int rt, int rt2, int isread, in syn_cp14_rrt_trap() argument 198 | (rt2 << 10) | (rt << 5) | (crm << 1) | isread; in syn_cp14_rrt_trap() 202 int rt, int rt2, int isread, in syn_cp15_rrt_trap() argument 208 | (rt2 << 10) | (rt << 5) | (crm << 1) | isread; in syn_cp15_rrt_trap()
|
/openbmc/linux/arch/arm64/kernel/ |
H A D | armv8_deprecated.c | 85 * Syntax of SWP{B} instruction: SWP{B}<c> <Rt>, <Rt2>, [<Rn>] 87 * Rt2 = source 170 int rn, rt2, res = 0; in swp_handler() local 190 rt2 = aarch32_insn_extract_reg_num(instr, A32_RT2_OFFSET); in swp_handler() 193 data = (u32)regs->user_regs.regs[rt2]; in swp_handler()
|
/openbmc/qemu/target/arm/tcg/ |
H A D | t32.decode | 41 &strex !extern rn rd rt rt2 imm 42 &ldrex !extern rn rt rt2 imm 49 &mcrr !extern cp opc1 crm rt rt2 550 &ldst_ri2 p w u rn rt rt2 imm 551 @ldstd_ri8 .... .... u:1 ... rn:4 rt:4 rt2:4 ........ \ 569 &strex rt2=15 imm=%imm8x4 571 &strex rt2=15 imm=0 572 @strex_d .... .... .... rn:4 rt:4 rt2:4 .... rd:4 \ 576 &ldrex rt2=15 imm=%imm8x4 578 &ldrex rt2=15 imm=0 [all …]
|
H A D | a32.decode | 44 &strex rn rd rt rt2 imm 45 &ldrex rn rt rt2 imm 51 &mcrr cp opc1 crm rt rt2 368 @swp ---- .... .... rn:4 rt:4 .... .... rt2:4 375 # Note rt2 for STREXD/LDREXD is set by the helper after checking rt is even. 378 &strex imm=0 rt2=15 380 &ldrex imm=0 rt2=15 382 &ldrex imm=0 rt2=15 547 @mcrr ---- .... .... rt2:4 rt:4 cp:4 opc1:4 crm:4 &mcrr
|
H A D | translate.c | 2934 bool isread, int rt, int rt2) in do_coproc_insn() argument 2954 syndrome = syn_cp14_rrt_trap(1, 0xe, opc1, crm, rt, rt2, in do_coproc_insn() 2963 syndrome = syn_cp15_rrt_trap(1, 0xe, opc1, crm, rt, rt2, in do_coproc_insn() 3130 store_reg(s, rt2, tmp); in do_coproc_insn() 3164 tmphi = load_reg(s, rt2); in do_coproc_insn() 3263 static void gen_load_exclusive(DisasContext *s, int rt, int rt2, in gen_load_exclusive() argument 3277 * address is always Rt and the one at addr+4 is Rt2, even if in gen_load_exclusive() 3292 store_reg(s, rt2, tmp2); in gen_load_exclusive() 3307 static void gen_store_exclusive(DisasContext *s, int rd, int rt, int rt2, in gen_store_exclusive() argument 3336 t2 = load_reg(s, rt2); in gen_store_exclusive() [all …]
|
H A D | translate-mve.c | 2193 a->rt == 13 || a->rt == 15 || a->rt2 == 13 || a->rt2 == 15 || in DO_VABAV() 2194 a->rt == a->rt2) { in DO_VABAV() 2195 /* Rt/Rt2 cases are UNPREDICTABLE */ in DO_VABAV() 2213 store_reg(s, a->rt2, tmp); in DO_VABAV() 2236 a->rt == 13 || a->rt == 15 || a->rt2 == 13 || a->rt2 == 15) { in trans_VMOV_from_2gp() 2237 /* Rt/Rt2 cases are UNPREDICTABLE */ in trans_VMOV_from_2gp() 2252 tmp = load_reg(s, a->rt2); in trans_VMOV_from_2gp()
|
/openbmc/linux/arch/mips/crypto/ |
H A D | crc32-mips.c | 32 _ASM_MACRO_3R(OP, rt, rs, rt2, \ 33 ".ifnc \\rt, \\rt2\n\t" \ 34 ".error \"invalid operands \\\"" #OP " \\rt,\\rs,\\rt2\\\"\"\n\t" \
|
/openbmc/linux/net/mpls/ |
H A D | af_mpls.c | 2511 struct mpls_route *rt0 = NULL, *rt2 = NULL; in resize_platform_label_table() local 2537 rt2 = mpls_rt_alloc(1, lo->addr_len, 0); in resize_platform_label_table() 2538 if (IS_ERR(rt2)) in resize_platform_label_table() 2540 rt2->rt_nh->nh_dev = lo; in resize_platform_label_table() 2541 rt2->rt_protocol = RTPROT_KERNEL; in resize_platform_label_table() 2542 rt2->rt_payload_type = MPT_IPV6; in resize_platform_label_table() 2543 rt2->rt_ttl_propagate = MPLS_TTL_PROP_DEFAULT; in resize_platform_label_table() 2544 rt2->rt_nh->nh_via_table = NEIGH_LINK_TABLE; in resize_platform_label_table() 2545 rt2->rt_nh->nh_via_alen = lo->addr_len; in resize_platform_label_table() 2546 memcpy(__mpls_nh_via(rt2, rt2->rt_nh), lo->dev_addr, in resize_platform_label_table() [all …]
|
/openbmc/linux/arch/arm/kernel/ |
H A D | swp_emulate.c | 12 * Syntax of SWP{B} instruction: SWP{B}<c> <Rt>, <Rt2>, [<Rn>] 14 * Rt2 = source
|
/openbmc/linux/net/netfilter/ |
H A D | nf_conntrack_h323_main.c | 683 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()
|
/openbmc/linux/Documentation/devicetree/bindings/sound/ |
H A D | renesas,rz-ssi.yaml | 70 MID/RID value of SSI rt2 = 0x25f
|
/openbmc/linux/arch/arm/probes/kprobes/ |
H A D | checkers-thumb.c | 57 /* P U W | Rn | Rt | Rt2| imm8 |*/ in t32_check_stack()
|
H A D | actions-thumb.c | 163 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()
|
/openbmc/qemu/docs/devel/ |
H A D | decodetree.rst | 230 or 000010 rt2:5 r1:5 cf:4 001001 0 rt:5 235 is discarded and so the instruction has no effect. When the *rt2*
|