Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for simm (0.07 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	return op | (d&31)<<21 | (a&31)<<16 | (sbit&1)<<15 | (simm&0xF)<<11
    }
    
    /* VA-form 3-register + SHB operands */
    func AOP_IRRR(op uint32, d uint32, a uint32, b uint32, simm uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<16 | (b&31)<<11 | (simm&0xF)<<6
    }
    
    /* VX-form 1-register + SIM operands */
    func AOP_IR(op uint32, d uint32, simm uint32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    	// Bit order - [11|4|9:8|10|6|7|3:1|5]
    	bits := extractBitAndShift(imm, 11, 10)
    	bits |= extractBitAndShift(imm, 4, 9)
    	bits |= extractBitAndShift(imm, 9, 8)
    	bits |= extractBitAndShift(imm, 8, 7)
    	bits |= extractBitAndShift(imm, 10, 6)
    	bits |= extractBitAndShift(imm, 6, 5)
    	bits |= extractBitAndShift(imm, 7, 4)
    	bits |= extractBitAndShift(imm, 3, 3)
    	bits |= extractBitAndShift(imm, 2, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/_asm/fe_amd64_asm.go

    	Comment("Second reduction chain (carryPropagate)")
    	// c0 = r0 >> 51
    	MOVQ(r0lo, c0)
    	SHRQ(Imm(51), c0)
    	// c1 = r1 >> 51
    	MOVQ(r1lo, c1)
    	SHRQ(Imm(51), c1)
    	// c2 = r2 >> 51
    	MOVQ(r2lo, c2)
    	SHRQ(Imm(51), c2)
    	// c3 = r3 >> 51
    	MOVQ(r3lo, c3)
    	SHRQ(Imm(51), c3)
    	// c4 = r4 >> 51
    	MOVQ(r4lo, c4)
    	SHRQ(Imm(51), c4)
    	maskAndAdd(r0lo, maskLow51Bits, c4, 19)
    	maskAndAdd(r1lo, maskLow51Bits, c0, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. pilot/pkg/simulation/traffic.go

    }
    
    // withT swaps out the testing struct. This allows executing sub tests.
    func (sim *Simulation) withT(t *testing.T) *Simulation {
    	cpy := *sim
    	cpy.t = t
    	return &cpy
    }
    
    func (sim *Simulation) RunExpectations(es []Expect) {
    	for _, e := range es {
    		sim.t.Run(e.Name, func(t *testing.T) {
    			sim.withT(t).Run(e.Call).Matches(t, e.Result)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasSSE2             bool // Streaming SIMD extension 2 (always available on amd64)
    	HasSSE3             bool // Streaming SIMD extension 3
    	HasSSSE3            bool // Supplemental streaming SIMD extension 3
    	HasSSE41            bool // Streaming SIMD extension 4 and 4.1
    	HasSSE42            bool // Streaming SIMD extension 4 and 4.2
    	_                   CacheLinePad
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. docs/debugging/s3-verify/go.sum

    github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM=
    github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
    github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34=
    github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM=
    github.com/minio/minio-go/v7 v7.0.70 h1:1u9NtMgfK1U42kUxcsl5v0yj6TEOPR497OAQxpJnn2g=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 13 17:59:52 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. docs/debugging/s3-verify/go.mod

    	github.com/goccy/go-json v0.10.2 // indirect
    	github.com/google/uuid v1.6.0 // indirect
    	github.com/klauspost/compress v1.17.8 // indirect
    	github.com/klauspost/cpuid/v2 v2.2.7 // indirect
    	github.com/minio/md5-simd v1.1.2 // indirect
    	github.com/rs/xid v1.5.0 // indirect
    	github.com/stretchr/testify v1.7.0 // indirect
    	golang.org/x/crypto v0.23.0 // indirect
    	golang.org/x/net v0.25.0 // indirect
    	golang.org/x/sys v0.20.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 13 17:59:52 UTC 2024
    - 688 bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/FormBodyTest.kt

          FormBody.Builder()
            .add("sim", "ple")
            .build()
        val expected = "sim=ple"
        assertThat(body.contentLength()).isEqualTo(expected.length.toLong())
        val buffer = Buffer()
        body.writeTo(buffer)
        assertThat(buffer.readUtf8()).isEqualTo(expected)
      }
    
      @Test
      fun encodeMultiplePairs() {
        val body =
          FormBody.Builder()
            .add("sim", "ple")
            .add("hey", "there")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/riscv64/asm.go

    		var err error
    		var imm, immMask int64
    		switch r.Type() {
    		case objabi.R_RISCV_RVC_BRANCH:
    			immMask = riscv.CBTypeImmMask
    			imm, err = riscv.EncodeCBImmediate(off)
    			if err != nil {
    				ldr.Errorf(s, "cannot encode CB-type instruction relocation offset for %s: %v", ldr.SymName(rs), err)
    			}
    		case objabi.R_RISCV_RVC_JUMP:
    			immMask = riscv.CJTypeImmMask
    			imm, err = riscv.EncodeCJImmediate(off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&sigmav;":                          "\u03c2",
    	"&sim;":                             "\u223c",
    	"&simdot;":                          "\u2a6a",
    	"&sime;":                            "\u2243",
    	"&simeq;":                           "\u2243",
    	"&simg;":                            "\u2a9e",
    	"&simgE;":                           "\u2aa0",
    	"&siml;":                            "\u2a9d",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
Back to top