Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for i0 (0.02 sec)

  1. src/internal/types/testdata/check/expr0.go

    	// int
    	i0 = 1
    	i1 int = i0
    	i2 = +1
    	i3 = +i0
    	i4 int = +1
    	i5 int = +i4
    	i6 = -1
    	i7 = -i0
    	i8 int = -1
    	i9 int = -i4
    	i10 = !i0 /* ERROR "not defined" */
    	i11 = ^1
    	i12 = ^i0
    	i13 int = ^1
    	i14 int = ^i4
    	i15 = *i0 /* ERROR "cannot indirect" */
    	i16 = &i0
    	i17 = *i16
    	i18 = <-i16 /* ERROR "cannot receive" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/cycles0.go

    	S6 S4
    
    	// pointers
    	P0 *P0
    	PP *struct{ PP.f /* ERROR "PP.f is not a type" */ }
    
    	// functions
    	F0 func(F0)
    	F1 func() F1
    	F2 func(F2) F2
    
    	// interfaces
    	I0 /* ERROR "invalid recursive type: I0 refers to itself" */ interface{ I0 }
    
    	I1 /* ERROR "invalid recursive type" */ interface{ I2 }
    	I2 interface{ I3 }
    	I3 interface{ I1 }
    
    	I4 interface{ f(I4) }
    
    	// testcase for issue 5090
    	I5 interface{ f(I6) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/crypto/sha512/sha512block_arm64.s

    	VADD	i3.D2, i1.D2, i4.D2 \
    	SHA512H2	i0.D2, i1, i3
    
    #define SHA512ROUND_NO_UPDATE(i0, i1, i2, i3, i4, rc0, rc1, in0) \
    	VLD1.P	16(R4), [rc1.D2] \
    	SHA512TRANS(i0, i1, i2, i3, i4, rc0, in0) \
    	SHA512H	V7.D2, V6, i3 \
    	VADD	i3.D2, i1.D2, i4.D2 \
    	SHA512H2	i0.D2, i1, i3
    
    #define SHA512ROUND_LAST(i0, i1, i2, i3, i4, rc0, in0) \
    	SHA512TRANS(i0, i1, i2, i3, i4, rc0, in0) \
    	SHA512H	V7.D2, V6, i3 \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/image/ycbcr.go

    		mul3NonNeg(2, cw, ch),
    	)
    	if totalLength < 0 {
    		panic("image: NewYCbCr Rectangle has huge or negative dimensions")
    	}
    
    	i0 := w*h + 0*cw*ch
    	i1 := w*h + 1*cw*ch
    	i2 := w*h + 2*cw*ch
    	b := make([]byte, i2)
    	return &YCbCr{
    		Y:              b[:i0:i0],
    		Cb:             b[i0:i1:i1],
    		Cr:             b[i1:i2:i2],
    		SubsampleRatio: subsampleRatio,
    		YStride:        w,
    		CStride:        cw,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. src/internal/trace/batchcursor.go

    			// Heap invariant already applies.
    			break
    		}
    		heap[i], heap[m] = heap[m], heap[i]
    		i = m
    	}
    	return i
    }
    
    func min3(b []*batchCursor, i0, i1, i2 int) int {
    	minIdx := i0
    	minT := maxTime
    	if i0 < len(b) {
    		minT = b[i0].ev.time
    	}
    	if i1 < len(b) {
    		if t := b[i1].ev.time; t < minT {
    			minT = t
    			minIdx = i1
    		}
    	}
    	if i2 < len(b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/typeinst1.go

    }
    
    type E2 interface {
    	~float64
    }
    
    type I0 interface {
    	E0
    }
    
    func f0[T I0]() {}
    var _ = f0[int]
    var _ = f0[bool]
    var _ = f0[string]
    var _ = f0[float64 /* ERROR "does not satisfy I0" */ ]
    
    type I01 interface {
    	E0
    	E1
    }
    
    func f01[T I01]() {}
    var _ = f01[int]
    var _ = f01[bool /* ERROR "does not satisfy I0" */ ]
    var _ = f01[string]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/time/zoneinfo_windows.go

    	dst.isDST = true
    
    	// Arrange so that d0 is first transition date, d1 second,
    	// i0 is index of zone after first transition, i1 second.
    	d0 := &i.StandardDate
    	d1 := &i.DaylightDate
    	i0 := 0
    	i1 := 1
    	if d0.Month > d1.Month {
    		d0, d1 = d1, d0
    		i0, i1 = i1, i0
    	}
    
    	// 2 tx per year, 100 years on each side of this year
    	l.tx = make([]zoneTrans, 400)
    
    	t := Now().UTC()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. src/container/heap/heap.go

    		j = i
    	}
    }
    
    func down(h Interface, i0, n int) bool {
    	i := i0
    	for {
    		j1 := 2*i + 1
    		if j1 >= n || j1 < 0 { // j1 < 0 after int overflow
    			break
    		}
    		j := j1 // left child
    		if j2 := j1 + 1; j2 < n && h.Less(j2, j1) {
    			j = j2 // = 2*i + 2  // right child
    		}
    		if !h.Less(j, i) {
    			break
    		}
    		h.Swap(i, j)
    		i = j
    	}
    	return i > i0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/internal/trace/internal/oldtrace/order.go

    	for {
    		i := (j - 1) / 2 // parent
    		if i == j || !h.Less(j, i) {
    			break
    		}
    		(*h)[i], (*h)[j] = (*h)[j], (*h)[i]
    		j = i
    	}
    }
    
    func heapDown(h *orderEventList, i0, n int) bool {
    	i := i0
    	for {
    		j1 := 2*i + 1
    		if j1 >= n || j1 < 0 { // j1 < 0 after int overflow
    			break
    		}
    		j := j1 // left child
    		if j2 := j1 + 1; j2 < n && h.Less(j2, j1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/java-sourcesets-compilation.graffle

    Monaco;} {\colortbl;\red255\green255\blue255;\red0\green0\blue0;} {\*\expandedcolortbl;;\csgray\c0;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\i\fs32 \cf2 sourceSet \f1\i0 Implementation \f0 \ (configuration)}Bounds{{15, -214}, {224, 65}}ClassShapedGraphicID.0g0.0r0.0space9eaea0911d89d6/+SABlAGwAdgBlAHQAaQBj/+TQBvAG4AYQBjAG8AAACc//kgAZQBsAHYAZQB0AGkAY== Text{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top