Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,408 for y$ (0.02 sec)

  1. test/fixedbugs/issue5614.dir/y.go

    package y
    
    import "./x"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 06:18:36 UTC 2013
    - 37 bytes
    - Viewed (0)
  2. test/fixedbugs/bug160.dir/y.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 348 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (Rsh8x32  <t> x y) && !shiftIsBounded(v) => (SRA  <t> (SignExt8to64  x) (OR <y.Type> y (ADDI <y.Type> [-1] (SLTIU <y.Type> [64] (ZeroExt32to64 y)))))
    (Rsh8x64  <t> x y) && !shiftIsBounded(v) => (SRA  <t> (SignExt8to64  x) (OR <y.Type> y (ADDI <y.Type> [-1] (SLTIU <y.Type> [64] y))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  4. src/image/geom.go

    	if r.Min.X > s.Min.X {
    		r.Min.X = s.Min.X
    	}
    	if r.Min.Y > s.Min.Y {
    		r.Min.Y = s.Min.Y
    	}
    	if r.Max.X < s.Max.X {
    		r.Max.X = s.Max.X
    	}
    	if r.Max.Y < s.Max.Y {
    		r.Max.Y = s.Max.Y
    	}
    	return r
    }
    
    // Empty reports whether the rectangle contains no points.
    func (r Rectangle) Empty() bool {
    	return r.Min.X >= r.Max.X || r.Min.Y >= r.Max.Y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue59367.go

    	b[2] = byte(y >> 40)
    	b[3] = byte(y >> 32)
    	b[4] = byte(y >> 24)
    	b[5] = byte(y >> 16)
    	b[6] = byte(y >> 8)
    	b[7] = byte(y)
    	nop()                // spill/restore ROLQ
    	b[0] = byte(y >> 56) // use ROLQ
    	b[1] = byte(y >> 48)
    	b[2] = byte(y >> 40)
    	b[3] = byte(y >> 32)
    	b[4] = byte(y >> 24)
    	b[5] = byte(y >> 16)
    	b[6] = byte(y >> 8)
    	b[7] = byte(y)
    }
    
    //go:noinline
    func nop() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 21:11:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue48712.go

    package p
    
    func _[P comparable](x, y P) {
    	_ = x == x
    	_ = x == y
    	_ = y == x
    	_ = y == y
    
    	_ = x /* ERROR "type parameter P is not comparable with <" */ < y
    }
    
    func _[P comparable](x P, y any) {
    	_ = x == x
    	_ = x == y
    	_ = y == x
    	_ = y == y
    
    	_ = x /* ERROR "type parameter P is not comparable with <" */ < y
    }
    
    func _[P any](x, y P) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/image/draw/bench_test.go

    		for y := 0; y < dsth; y++ {
    			for x := 0; x < dstw; x++ {
    				dst1.SetRGBA(x, y, color.RGBA{
    					uint8(5 * x % 0x100),
    					uint8(7 * y % 0x100),
    					uint8((7*x + 5*y) % 0x100),
    					0xff,
    				})
    			}
    		}
    		dst = dst1
    	case color.RGBA64Model:
    		dst1 := image.NewRGBA64(image.Rect(0, 0, dstw, dsth))
    		for y := 0; y < dsth; y++ {
    			for x := 0; x < dstw; x++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. src/crypto/elliptic/elliptic_test.go

    	xx.Sub(x, p)
    	checkIsOnCurveFalse("x-P, y", xx, y)
    	yy.Sub(y, p)
    	checkIsOnCurveFalse("x, y-P", x, yy)
    
    	// Check if positive values are reduced modulo P.
    	xx.Add(x, p)
    	checkIsOnCurveFalse("x+P, y", xx, y)
    	yy.Add(y, p)
    	checkIsOnCurveFalse("x, y+P", x, yy)
    
    	// Check if the overflow is dropped.
    	xx.Add(x, new(big.Int).Lsh(big.NewInt(1), 535))
    	checkIsOnCurveFalse("x+2⁵³⁵, y", xx, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Rsh(64|32)x16 x y) => (SRA(D|W) x (LOCGR {s390x.GreaterOrEqual} <y.Type> y (MOVDconst <y.Type> [63]) (CMPWUconst (MOVHZreg y) [64])))
    (Rsh(64|32)x8  x y) => (SRA(D|W) x (LOCGR {s390x.GreaterOrEqual} <y.Type> y (MOVDconst <y.Type> [63]) (CMPWUconst (MOVBZreg y) [64])))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  10. test/closure3.dir/main.go

    			ppanic("x() != 1")
    		}
    	}
    
    	{
    		if y := func(x int) int { // ERROR "can inline main.func3"
    			return x + 2
    		}(40); y != 42 { // ERROR "inlining call to main.func3"
    			ppanic("y != 42")
    		}
    		if y := func(x int) int { // ERROR "can inline main.func4" "func literal does not escape"
    			return x + 2
    		}; y(40) != 42 { // ERROR "inlining call to main.func4"
    			ppanic("y(40) != 42")
    		}
    	}
    
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:29 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top