Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for Vt (0.02 sec)

  1. src/crypto/aes/asm_ppc64x.s

    #define P8_LXVB16X(RA,RB,VT)  LXVB16X	(RA+RB), VT
    #define P8_STXVB16X(VS,RA,RB) STXVB16X	VS, (RA+RB)
    #define XXBRD_ON_LE(VA,VT)    XXBRD	VA, VT
    #  else
    // On POWER8/ppc64le, emulate the POWER9 instructions by loading unaligned
    // doublewords and byte-swapping each doubleword to emulate BE load/stores.
    #define NEEDS_ESPERM
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X	(RA+RB), VT \
    	VPERM	VT, VT, ESPERM, VT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    		}
    
    		var V0 types.Type // integral type in the type set of V
    
    		for _, vt := range vtypes {
    			u, _ := vt.Underlying().(*types.Basic)
    			if u != nil && u.Info()&types.IsInteger != 0 {
    				switch u.Kind() {
    				case types.Byte, types.Rune, types.UntypedRune:
    					continue
    				}
    				V0 = vt
    				break
    			}
    		}
    
    		if V0 == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. pilot/pkg/util/protoconv/protoconv.go

    		Value:   b,
    	}, nil
    }
    
    func marshal(msg proto.Message) ([]byte, error) {
    	if features.EnableVtprotobuf {
    		if vt, ok := msg.(vtStrictMarshal); ok {
    			// Attempt to use more efficient implementation
    			// "Strict" is the equivalent to Deterministic=true below
    			return vt.MarshalVTStrict()
    		}
    	}
    	// If not available, fallback to normal implementation
    	return proto.MarshalOptions{Deterministic: true}.Marshal(msg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 04:55:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/terminal.go

    	// https://no-color.org/
    	if _, nocolor := os.LookupEnv("NO_COLOR"); nocolor {
    		return false
    	}
    
    	// On Windows WT_SESSION is set by the modern terminal component.
    	// Older terminals have poor support for UTF-8, VT escape codes, etc.
    	if runtime.GOOS == "windows" && os.Getenv("WT_SESSION") == "" {
    		return false
    	}
    
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_ppc64x.s

    #  ifdef GOPPC64_power9
    #define P8_LXVB16X(RA,RB,VT)   LXVB16X (RA)(RB), VT
    #define P8_STXVB16X(VS,RA,RB)  STXVB16X VS, (RA)(RB)
    #  else
    #define NEEDS_ESPERM
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X  (RA+RB), VT \
    	VPERM	VT, VT, ESPERM, VT
    
    #define P8_STXVB16X(VS,RA,RB) \
    	VPERM	VS, VS, ESPERM, TMP2; \
    	STXVD2X TMP2, (RA+RB)
    
    #  endif
    #else
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X  (RA+RB), VT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    	switch vt := v.(type) {
    	case types.String:
    		return uint64(float64(len(string(vt))) * common.StringTraversalCostFactor)
    	case types.Bytes:
    		return uint64(float64(len([]byte(vt))) * common.StringTraversalCostFactor)
    	case traits.Lister:
    		cost := uint64(0)
    		for it := vt.Iterator(); it.HasNext() == types.True; {
    			i := it.Next()
    			cost += traversalCost(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    	ps.print(vt.Dimension)
    	ps.writeByte(end)
    }
    
    func (vt *VectorType) Traverse(fn func(AST) bool) {
    	if fn(vt) {
    		vt.Dimension.Traverse(fn)
    		vt.Base.Traverse(fn)
    	}
    }
    
    func (vt *VectorType) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(vt) {
    		return nil
    	}
    	dimension := vt.Dimension.Copy(fn, skip)
    	base := vt.Base.Copy(fn, skip)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/stmt.go

    			// Assign the clause variable's type.
    			vt := t
    			if len(ls) == 1 {
    				if ls[0].Op() == ir.OTYPE || ls[0].Op() == ir.ODYNAMICTYPE {
    					vt = ls[0].Type()
    				} else if !ir.IsNil(ls[0]) {
    					// Invalid single-type case;
    					// mark variable as broken.
    					vt = nil
    				}
    			}
    
    			nvar := ncase.Var
    			nvar.SetType(vt)
    			if vt != nil {
    				nvar = AssignExpr(nvar).(*ir.Name)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. cmd/object-api-utils_test.go

    		{"!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~/!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~)", true},
    		{"!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~", true},
    		{"␀␁␂␃␄␅␆␇␈␉␊␋␌␍␎␏␐␑␒␓␔␕␖␗␘␙␚␛␜␝␞␟␡", true},
    		{"trailing VT␋/trailing VT␋", true},
    		{"␋leading VT/␋leading VT", true},
    		{"~leading tilde", true},
    		{"\rleading CR", true},
    		{"\nleading LF", true},
    		{"\tleading HT", true},
    		{"trailing CR\r", true},
    		{"trailing LF\n", true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/crypto/sha256/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: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top