Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for Rd (0.05 sec)

  1. src/crypto/sha1/sha1block_arm.s

    	ROUND1x(Rd, Re, Ra, Rb, Rc)
    	ROUND1x(Rc, Rd, Re, Ra, Rb)
    	ROUND1x(Rb, Rc, Rd, Re, Ra)
    
    	MOVW	$0x6ED9EBA1, Rconst
    	MOVW	$4, Rctr
    loop2:	ROUND2(Ra, Rb, Rc, Rd, Re)
    	ROUND2(Re, Ra, Rb, Rc, Rd)
    	ROUND2(Rd, Re, Ra, Rb, Rc)
    	ROUND2(Rc, Rd, Re, Ra, Rb)
    	ROUND2(Rb, Rc, Rd, Re, Ra)
    	SUB.S	$1, Rctr
    	BNE	loop2
    
    	MOVW	$0x8F1BBCDC, Rconst
    	MOVW	$4, Rctr
    loop3:	ROUND3(Ra, Rb, Rc, Rd, Re)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    [{"Name":"ADC","Bits":"0|0|0|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"ADC <Wd>, <Wn>, <Wm>","Code":"","Alias":""},
    {"Name":"ADC","Bits":"1|0|0|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"64-bit variant","Syntax":"ADC <Xd>, <Xn>, <Xm>","Code":"","Alias":""},
    {"Name":"ADCS","Bits":"0|0|1|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"ADCS <Wd>, <Wn>, <Wm>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  3. src/crypto/md5/md5block_arm.s

    	ROUND2(Rd, Ra, Rb, Rc, 10,	9, Rc1)
    	ROUND2(Rc, Rd, Ra, Rb, 15, 14, Rc2)
    	ROUND2(Rb, Rc, Rd, Ra,  4, 20, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND2(Ra, Rb, Rc, Rd,  9,	5, Rc0)
    	ROUND2(Rd, Ra, Rb, Rc, 14,	9, Rc1)
    	ROUND2(Rc, Rd, Ra, Rb,  3, 14, Rc2)
    	ROUND2(Rb, Rc, Rd, Ra,  8, 20, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND2(Ra, Rb, Rc, Rd, 13,	5, Rc0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    		} else if immh>>1 == 1 {
    			return H0 + Reg(Rd)
    		} else if immh>>2 == 1 {
    			return S0 + Reg(Rd)
    		} else {
    			return nil
    		}
    
    	case arg_Vd_19_4__B_1__H_2__S_4__D_8:
    		immh := (x >> 19) & (1<<4 - 1)
    		Rd := x & (1<<5 - 1)
    		if immh == 1 {
    			return B0 + Reg(Rd)
    		} else if immh>>1 == 1 {
    			return H0 + Reg(Rd)
    		} else if immh>>2 == 1 {
    			return S0 + Reg(Rd)
    		} else if immh>>3 == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	{0x0fe00000, 0x02800000, 2, ADD_EQ, 0x14011c04, instArgs{arg_R_12, arg_R_16, arg_const}},                      // ADD{S}<c> <Rd>,<Rn>,#<const> cond:4|0|0|1|0|1|0|0|S|Rn:4|Rd:4|imm12:12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    		if ins.rd == obj.REG_NONE {
    			ins.rd = ins.rs1
    		}
    		ins.imm = -1
    
    	case ASEQZ:
    		// SEQZ rs, rd -> SLTIU $1, rs, rd
    		ins.as = ASLTIU
    		ins.rs1, ins.rs2 = uint32(p.From.Reg), obj.REG_NONE
    		ins.imm = 1
    
    	case ASNEZ:
    		// SNEZ rs, rd -> SLTU rs, x0, rd
    		ins.as = ASLTU
    		ins.rs1 = REG_ZERO
    
    	case AFABSS:
    		// FABSS rs, rd -> FSGNJXS rs, rs, rd
    		ins.as = AFSGNJXS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. cmd/storage-datatypes_gen_test.go

    	}
    	en.Flush()
    }
    
    func BenchmarkDecodeBaseOptions(b *testing.B) {
    	v := BaseOptions{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    	b.SetBytes(int64(buf.Len()))
    	rd := msgp.NewEndlessReader(buf.Bytes(), b)
    	dc := msgp.NewReader(rd)
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		err := v.DecodeMsg(dc)
    		if err != nil {
    			b.Fatal(err)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/virtualservice/util.go

    	for i, r := range vs.GetTcp() {
    		for j, rd := range r.GetRoute() {
    			destinations = append(destinations, &AnnotatedDestination{
    				RouteRule:        "tcp",
    				ServiceIndex:     i,
    				DestinationIndex: j,
    				Destination:      rd.GetDestination(),
    			})
    		}
    	}
    	for i, r := range vs.GetTls() {
    		for j, rd := range r.GetRoute() {
    			destinations = append(destinations, &AnnotatedDestination{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. cmd/bucket-stats_gen_test.go

    }
    
    func BenchmarkDecodeBucketReplicationStat(b *testing.B) {
    	v := BucketReplicationStat{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    	b.SetBytes(int64(buf.Len()))
    	rd := msgp.NewEndlessReader(buf.Bytes(), b)
    	dc := msgp.NewReader(rd)
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		err := v.DecodeMsg(dc)
    		if err != nil {
    			b.Fatal(err)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 30 08:00:59 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v1_gen_test.go

    	}
    	en.Flush()
    }
    
    func BenchmarkDecodeChecksumInfo(b *testing.B) {
    	v := ChecksumInfo{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    	b.SetBytes(int64(buf.Len()))
    	rd := msgp.NewEndlessReader(buf.Bytes(), b)
    	dc := msgp.NewReader(rd)
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		err := v.DecodeMsg(dc)
    		if err != nil {
    			b.Fatal(err)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 13.2K bytes
    - Viewed (0)
Back to top