Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for simm (0.05 sec)

  1. 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)
  2. src/crypto/internal/bigmod/_asm/nat_amd64_asm.go

    		Comment("Iteration " + strconv.Itoa(i))
    		hi, lo := RDX, RAX // implicit MULQ inputs and outputs
    		MOVQ(x.Offset(i*8), lo)
    		MULQ(y)
    		ADDQ(z.Offset(i*8), lo)
    		ADCQ(Imm(0), hi)
    		ADDQ(carry, lo)
    		ADCQ(Imm(0), hi)
    		MOVQ(hi, carry)
    		MOVQ(lo, z.Offset(i*8))
    	}
    
    	Store(carry, ReturnIndex(0))
    	RET()
    
    	Label("adx")
    
    	// The ADX strategy implements the following function, where c1 and c2 are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    			}
    		}
    	}
    }
    
    // An Imm is an integer constant.
    type Imm struct {
    	Imm     uint32
    	Decimal bool
    }
    
    func (Imm) isArg() {}
    
    func (i Imm) String() string {
    	if !i.Decimal {
    		return fmt.Sprintf("#%#x", i.Imm)
    	} else {
    		return fmt.Sprintf("#%d", i.Imm)
    	}
    }
    
    type Imm64 struct {
    	Imm     uint64
    	Decimal bool
    }
    
    func (Imm64) isArg() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. src/runtime/export_debug_arm64_test.go

    		dst.Ints[i] = uintptr(src.regs[i])
    	}
    	for i := range dst.Floats {
    		dst.Floats[i] = *(fpRegAddr(src, i))
    	}
    }
    
    // fpRegAddr returns the address of the ith fp-simd register in sigcontext.
    func fpRegAddr(dst *sigcontext, i int) *uint64 {
    	/* FP-SIMD registers are saved in sigcontext.__reserved, which is orgnized in
    	the following C structs:
    	struct fpsimd_context {
    		struct _aarch64_ctx head;
    		__u32 fpsr;
    		__u32 fpcr;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. .idea/dictionaries/svyatoslav_kuzmich.xml

          <w>externref</w>
          <w>funcref</w>
          <w>jetbrains</w>
          <w>kotlinx</w>
          <w>ktor</w>
          <w>optref</w>
          <w>popcnt</w>
          <w>rotl</w>
          <w>rotr</w>
          <w>simd</w>
          <w>sqrt</w>
          <w>testsuite</w>
          <w>uninstantiable</w>
          <w>unintercepted</w>
          <w>unlinkable</w>
          <w>vtable</w>
          <w>wabt</w>
          <w>xopt</w>
        </words>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 12 05:42:01 UTC 2021
    - 594 bytes
    - Viewed (0)
  6. 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)
  7. src/internal/cpu/cpu_s390x.go

    type facility uint8
    
    const (
    	// mandatory facilities
    	zarch  facility = 1  // z architecture mode is active
    	stflef facility = 7  // store-facility-list-extended
    	ldisp  facility = 18 // long-displacement
    	eimm   facility = 21 // extended-immediate
    
    	// miscellaneous facilities
    	dfp    facility = 42 // decimal-floating-point
    	etf3eh facility = 30 // extended-translation 3 enhancement
    
    	// cryptography facilities
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    	options = []option{
    		{Name: "zarch", Feature: &S390X.HasZARCH, Required: true},
    		{Name: "stfle", Feature: &S390X.HasSTFLE, Required: true},
    		{Name: "ldisp", Feature: &S390X.HasLDISP, Required: true},
    		{Name: "eimm", Feature: &S390X.HasEIMM, Required: true},
    		{Name: "dfp", Feature: &S390X.HasDFP},
    		{Name: "etf3eh", Feature: &S390X.HasETF3EH},
    		{Name: "msa", Feature: &S390X.HasMSA},
    		{Name: "aes", Feature: &S390X.HasAES},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		}
    		return op + " (" + args[1] + ")(" + args[0] + ")"
    
    	// branch instructions needs additional handling
    	case BCLR:
    		if int(inst.Args[0].(Imm))&20 == 20 { // unconditional
    			return "RET"
    		}
    		return op + " " + strings.Join(args, ", ")
    	case BC:
    		bo := int(inst.Args[0].(Imm))
    		bi := int(inst.Args[1].(CondReg) - Cond0LT)
    		bcname := condName[((bo&0x8)>>1)|(bi&0x3)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  10. 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)
Back to top