Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for vx (0.03 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    	VAF    c1, c0, c0  \
    	VAF    d1, d0, d0  \
    	VX     a0, a2, a2  \
    	VX     b0, b2, b2  \
    	VX     c0, c2, c2  \
    	VX     d0, d2, d2  \
    	VERLLF $16, a2, a2 \
    	VERLLF $16, b2, b2 \
    	VERLLF $16, c2, c2 \
    	VERLLF $16, d2, d2 \
    	VAF    a2, a3, a3  \
    	VAF    b2, b3, b3  \
    	VAF    c2, c3, c3  \
    	VAF    d2, d3, d3  \
    	VX     a3, a1, a1  \
    	VX     b3, b1, b1  \
    	VX     c3, c1, c1  \
    	VX     d3, d1, d1  \
    	VERLLF $12, a1, a1 \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		if sz != 0 {
    			return D0 + Reg(vx<<4+v)
    		} else {
    			return S0 + Reg(v<<1+vx)
    		}
    
    	case arg_Sm:
    		v := (x >> 0) & (1<<4 - 1)
    		vx := (x >> 5) & 1
    		return S0 + Reg(v<<1+vx)
    
    	case arg_Dn_half:
    		v := (x >> 16) & (1<<4 - 1)
    		vx := (x >> 7) & 1
    		return RegX{D0 + Reg(vx<<4+v), int((x >> 21) & 1)}
    
    	case arg_Sn_Dn:
    		v := (x >> 16) & (1<<4 - 1)
    		vx := (x >> 7) & 1
    		sz := (x >> 8) & 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    // A pseudo-version takes one of the general forms:
    //
    //	(1) vX.0.0-yyyymmddhhmmss-abcdef123456
    //	(2) vX.Y.(Z+1)-0.yyyymmddhhmmss-abcdef123456
    //	(3) vX.Y.(Z+1)-0.yyyymmddhhmmss-abcdef123456+incompatible
    //	(4) vX.Y.Z-pre.0.yyyymmddhhmmss-abcdef123456
    //	(5) vX.Y.Z-pre.0.yyyymmddhhmmss-abcdef123456+incompatible
    //
    // If there is no recently tagged version with the right major version vX,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_VecReg_6_10, ap_Reg_16_20}},
    	{MTVSRQM, 0xfc1f07ff00000000, 0x1014064200000000, 0x0, // Move to VSR Quadword Mask VX-form (mtvsrqm VRT,RB)
    		[6]*argField{ap_VecReg_6_10, ap_Reg_16_20}},
    	{MTVSRWM, 0xfc1f07ff00000000, 0x1012064200000000, 0x0, // Move to VSR Word Mask VX-form (mtvsrwm VRT,RB)
    		[6]*argField{ap_VecReg_6_10, ap_Reg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  5. src/internal/gover/gover.go

    func Compare(x, y string) int {
    	vx := Parse(x)
    	vy := Parse(y)
    
    	if c := CmpInt(vx.Major, vy.Major); c != 0 {
    		return c
    	}
    	if c := CmpInt(vx.Minor, vy.Minor); c != 0 {
    		return c
    	}
    	if c := CmpInt(vx.Patch, vy.Patch); c != 0 {
    		return c
    	}
    	if c := cmp.Compare(vx.Kind, vy.Kind); c != 0 { // "" < alpha < beta < rc
    		return c
    	}
    	if c := CmpInt(vx.Pre, vy.Pre); c != 0 {
    		return c
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue45851.go

    type Vertex struct {
    	BaseValue Value
    	name string
    }
    func (v *Vertex) Kind() Kind {
    	return TopKind
    }
    
    func main() {
    	vA := &Vertex{name:"vA",}
    	vB := &Vertex{name:"vB",}
    	vX := &Vertex{name:"vX",}
    	vA.BaseValue = vX
    	vB.BaseValue = vX
    	_ = equalVertex(vA, vB, Flag(1))
    }
    
    var foo string
    
    //go:noinline
    func (v *Vertex) IsClosedStruct() bool {
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 17:46:12 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/versions/gover.go

    func compare(x, y string) int {
    	vx := parse(x)
    	vy := parse(y)
    
    	if c := cmpInt(vx.major, vy.major); c != 0 {
    		return c
    	}
    	if c := cmpInt(vx.minor, vy.minor); c != 0 {
    		return c
    	}
    	if c := cmpInt(vx.patch, vy.patch); c != 0 {
    		return c
    	}
    	if c := strings.Compare(vx.kind, vy.kind); c != 0 { // "" < alpha < beta < rc
    		return c
    	}
    	if c := cmpInt(vx.pre, vy.pre); c != 0 {
    		return c
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. test/escape_reflect.go

    	vc := reflect.ValueOf(ch)
    	vx := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	vc.Send(vx)
    }
    
    // Unfortunate: x (the interface storage) doesn't need to escape.
    func send2(ch chan string, x string) bool { // ERROR "ch does not escape" "leaking param: x$"
    	vc := reflect.ValueOf(ch)
    	vx := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	return vc.TrySend(vx)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    		return nil, err
    	}
    
    	x, err := newExtensions(s)
    	if err != nil {
    		return nil, err
    	}
    
    	vx, err := newValidationExtensions(s)
    	if err != nil {
    		return nil, err
    	}
    
    	ss := &Structural{
    		Generic:              *g,
    		Extensions:           *x,
    		ValueValidation:      vv,
    		ValidationExtensions: *vx,
    	}
    
    	if s.Items != nil {
    		if len(s.Items.JSONSchemas) > 0 {
    			// we validate that it is not an array
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go

    	S390X.HasEIMM = facilities.Has(eimm)
    
    	// optional
    	S390X.HasETF3EH = facilities.Has(etf3eh)
    	S390X.HasDFP = facilities.Has(dfp)
    	S390X.HasMSA = facilities.Has(msa)
    	S390X.HasVX = facilities.Has(vx)
    	if S390X.HasVX {
    		S390X.HasVXE = facilities.Has(vxe)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 643 bytes
    - Viewed (0)
Back to top