Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for z$ (0.1 sec)

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

    		}
    		break
    	}
    	// match: (MOVBZreg z:(ANDconst [c] (MOVBZload ptr x)))
    	// result: z
    	for {
    		z := v_0
    		if z.Op != OpPPC64ANDconst {
    			break
    		}
    		z_0 := z.Args[0]
    		if z_0.Op != OpPPC64MOVBZload {
    			break
    		}
    		v.copyOf(z)
    		return true
    	}
    	// match: (MOVBZreg z:(AND y (MOVBZload ptr x)))
    	// result: z
    	for {
    		z := v_0
    		if z.Op != OpPPC64AND {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. doc/go_spec.html

    that computes <code>x*y + z</code> without rounding the intermediate result <code>x*y</code>.
    These examples show when a Go implementation can use that instruction:
    </p>
    
    <pre>
    // FMA allowed for computing r, because x*y is not explicitly rounded:
    r  = x*y + z
    r  = z;   r += x*y
    t  = x*y; r = t + z
    *p = x*y; r = *p + z
    r  = x*y + float64(z)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    eturn ds([...i,...e])}var hs=C(()=>{l();Yu();Xu()});var Zu={};Ae(Zu,{default:()=>Z});var Z,gt=C(()=>{l();Z={resolve:i=>i,extname:i=>"."+i.split(".").pop()}});function xi(i){return typeof i=="object"&&i!==null}function r0(i){return Object.keys(i).length===0}function ef(i){return typeof i=="string"||i instanceof String}function ms(i){return xi(i)&&i.config===void 0&&!r0(i)?null:xi(i)&&i.config!==void 0&&ef(i.config)?Z.resolve(i.config):xi(i)&&i.config!==void 0&&xi(i.config)?null:ef(i)?Z.resolve(i):i0()}function...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		}
    	case t.IsComplex():
    		switch t.Size() {
    		case 8:
    			z := s.constFloat32(types.Types[types.TFLOAT32], 0)
    			return s.entryNewValue2(ssa.OpComplexMake, t, z, z)
    		case 16:
    			z := s.constFloat64(types.Types[types.TFLOAT64], 0)
    			return s.entryNewValue2(ssa.OpComplexMake, t, z, z)
    		default:
    			s.Fatalf("bad sized complex type %v", t)
    		}
    
    	case t.IsString():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    func (z http2sortPriorityNodeSiblings) Len() int { return len(z) }
    
    func (z http2sortPriorityNodeSiblings) Swap(i, k int) { z[i], z[k] = z[k], z[i] }
    
    func (z http2sortPriorityNodeSiblings) Less(i, k int) bool {
    	// Prefer the subtree that has sent fewer bytes relative to its weight.
    	// See sections 5.3.2 and 5.3.4.
    	wi, bi := float64(z[i].weight+1), float64(z[i].subtreeBytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    	ExclusiveMaximum: true,
    	Minimum:          float64Ptr(5),
    	ExclusiveMinimum: true,
    	MaxLength:        int64Ptr(10),
    	MinLength:        int64Ptr(5),
    	Pattern:          "^[a-z]$",
    	MaxItems:         int64Ptr(10),
    	MinItems:         int64Ptr(5),
    	MultipleOf:       float64Ptr(3),
    	Required:         []string{"spec", "status"},
    	Properties: map[string]apiextensions.JSONSchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "spec": {
                "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    	"\"r\x038\x00\x00\"t" + // 0x22720338: 0x00002274
    	"\"s\x038\x00\x00\"u" + // 0x22730338: 0x00002275
    	"\"v\x038\x00\x00\"x" + // 0x22760338: 0x00002278
    	"\"w\x038\x00\x00\"y" + // 0x22770338: 0x00002279
    	"\"z\x038\x00\x00\"\x80" + // 0x227A0338: 0x00002280
    	"\"{\x038\x00\x00\"\x81" + // 0x227B0338: 0x00002281
    	"\"\x82\x038\x00\x00\"\x84" + // 0x22820338: 0x00002284
    	"\"\x83\x038\x00\x00\"\x85" + // 0x22830338: 0x00002285
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go

    	"\"r\x038\x00\x00\"t" + // 0x22720338: 0x00002274
    	"\"s\x038\x00\x00\"u" + // 0x22730338: 0x00002275
    	"\"v\x038\x00\x00\"x" + // 0x22760338: 0x00002278
    	"\"w\x038\x00\x00\"y" + // 0x22770338: 0x00002279
    	"\"z\x038\x00\x00\"\x80" + // 0x227A0338: 0x00002280
    	"\"{\x038\x00\x00\"\x81" + // 0x227B0338: 0x00002281
    	"\"\x82\x038\x00\x00\"\x84" + // 0x22820338: 0x00002284
    	"\"\x83\x038\x00\x00\"\x85" + // 0x22830338: 0x00002285
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 372.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go

    	"\"r\x038\x00\x00\"t" + // 0x22720338: 0x00002274
    	"\"s\x038\x00\x00\"u" + // 0x22730338: 0x00002275
    	"\"v\x038\x00\x00\"x" + // 0x22760338: 0x00002278
    	"\"w\x038\x00\x00\"y" + // 0x22770338: 0x00002279
    	"\"z\x038\x00\x00\"\x80" + // 0x227A0338: 0x00002280
    	"\"{\x038\x00\x00\"\x81" + // 0x227B0338: 0x00002281
    	"\"\x82\x038\x00\x00\"\x84" + // 0x22820338: 0x00002284
    	"\"\x83\x038\x00\x00\"\x85" + // 0x22830338: 0x00002285
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.2K bytes
    - Viewed (0)
Back to top