Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Vt (0.16 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top