Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for Vt (0.02 sec)

  1. src/cmd/compile/internal/ssa/writebarrier.go

    		// Itabs, string data, and closure fields are
    		// read-only once initialized.
    		return true
    	case OpAddr:
    		vt := v.Aux.(*obj.LSym).Type
    		return vt == objabi.SRODATA || vt == objabi.SLIBFUZZER_8BIT_COUNTER || vt == objabi.SCOVERAGE_COUNTER || vt == objabi.SCOVERAGE_AUXVAR
    	}
    	return false
    }
    
    // isVolatile reports whether v is a pointer to argument region on stack which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512block_ppc64x.s

    #define s0	V28
    #define s1	V29
    #define LEMASK	V31	// Permutation control register for little endian
    
    // VPERM is needed on LE to switch the bytes
    
    #ifdef GOARCH_ppc64le
    #define VPERMLE(va,vb,vc,vt) VPERM va, vb, vc, vt
    #else
    #define VPERMLE(va,vb,vc,vt)
    #endif
    
    // 2 copies of each Kt, to fill both doublewords of a vector register
    DATA  ·kcon+0x000(SB)/8, $0x428a2f98d728ae22
    DATA  ·kcon+0x008(SB)/8, $0x428a2f98d728ae22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		kind = dst
    	} else {
    		kind = src
    	}
    
    	vk := v.kind
    	vs := v.size
    	vt := v.typ
    	switch vk {
    	case asmInterface, asmEmptyInterface, asmString, asmSlice:
    		// allow reference to first word (pointer)
    		vk = v.inner[0].kind
    		vs = v.inner[0].size
    		vt = v.inner[0].typ
    	case asmComplex:
    		// Allow a single instruction to load both parts of a complex.
    		if int(kind) == vs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/cmd/internal/notsha256/sha256block_ppc64x.s

    	VADDUWM		FUNC, S0, S0; \
    	VADDUWM		s0, xj, xj; \
    	LVX		(TBL)(idx), KI; \
    	VADDUWM		S0, h, h; \
    	VADDUWM		s1, xj, xj
    
    #ifdef GOARCH_ppc64le
    #define VPERMLE(va,vb,vc,vt) VPERM va, vb, vc, vt
    #else
    #define VPERMLE(va,vb,vc,vt)
    #endif
    
    // func block(dig *digest, p []byte)
    TEXT ·block(SB),0,$0-32
    	MOVD	dig+0(FP), CTX
    	MOVD	p_base+8(FP), INP
    	MOVD	p_len+16(FP), LEN
    
    	SRD	$6, LEN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    			values[i] = s.Value[idx]
    		}
    		s.Value = s.Value[:len(values)]
    		copy(s.Value, values)
    	}
    	return nil
    }
    
    func searchValueType(vts []*ValueType, s string) int {
    	for i, vt := range vts {
    		if vt.Type == s {
    			return i
    		}
    	}
    	return -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/stmt.go

    			// look for duplicate types for a given value
    			// (quadratic algorithm, but these lists tend to be very short)
    			for _, vt := range seen[val] {
    				if Identical(v.typ, vt.typ) {
    					err := check.newError(DuplicateCase)
    					err.addf(&v, "duplicate case %s in expression switch", &v)
    					err.addf(vt.pos, "previous case")
    					err.report()
    					continue L
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate.go

    	scope.Debugf("ProtoToHelmValues with path %s, %v (%T)", path, node, node)
    	if util.IsValueNil(node) {
    		return nil
    	}
    
    	vv := reflect.ValueOf(node)
    	vt := reflect.TypeOf(node)
    	switch vt.Kind() {
    	case reflect.Ptr:
    		if !util.IsNilOrInvalidValue(vv.Elem()) {
    			errs = util.AppendErrs(errs, t.ProtoToHelmValues(vv.Elem().Interface(), root, path))
    		}
    	case reflect.Struct:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. src/go/types/stmt.go

    			// look for duplicate types for a given value
    			// (quadratic algorithm, but these lists tend to be very short)
    			for _, vt := range seen[val] {
    				if Identical(v.typ, vt.typ) {
    					err := check.newError(DuplicateCase)
    					err.addf(&v, "duplicate case %s in expression switch", &v)
    					err.addf(atPos(vt.pos), "previous case")
    					err.report()
    					continue L
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 == "XCASE" ||
    		$2 == "ALTWERASE" ||
    		$2 == "NOKERNINFO" ||
    		$2 == "NFDBITS" ||
    		$2 ~ /^PAR/ ||
    		$2 ~ /^SIG[^_]/ ||
    		$2 ~ /^O[CNPFPL][A-Z]+[^_][A-Z]+$/ ||
    		$2 ~ /^(NL|CR|TAB|BS|VT|FF)DLY$/ ||
    		$2 ~ /^(NL|CR|TAB|BS|VT|FF)[0-9]$/ ||
    		$2 ~ /^O?XTABS$/ ||
    		$2 ~ /^TC[IO](ON|OFF)$/ ||
    		$2 ~ /^IN_/ ||
    		$2 ~ /^KCM/ ||
    		$2 ~ /^LANDLOCK_/ ||
    		$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
    		$2 ~ /^LO_(KEY|NAME)_SIZE$/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    		result = ".D"
    	case Arrangement1D:
    		result = ".1D"
    	case Arrangement2D:
    		result = ".2D"
    	case Arrangement1Q:
    		result = ".1Q"
    	}
    	return
    }
    
    // Register with arrangement: <Vd>.<T>, { <Vt>.8B, <Vt2>.8B},
    type RegisterWithArrangement struct {
    	r   Reg
    	a   Arrangement
    	cnt uint8
    }
    
    func (RegisterWithArrangement) isArg() {}
    
    func (r RegisterWithArrangement) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top