Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,307 for y$ (0.24 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

      };
    
      /** The notion of equality used by AtomicDoubleArray */
      static boolean bitEquals(double x, double y) {
        return Double.doubleToRawLongBits(x) == Double.doubleToRawLongBits(y);
      }
    
      static void assertBitEquals(double x, double y) {
        assertEquals(Double.doubleToRawLongBits(x), Double.doubleToRawLongBits(y));
      }
    
      @J2ktIncompatible
      @GwtIncompatible // NullPointerTester
      public void testNulls() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/math/lgamma.go

    			p2 := 1 + y*(_lgamV[1]+y*(_lgamV[2]+y*(_lgamV[3]+y*(_lgamV[4]+y*_lgamV[5]))))
    			lgamma += (-0.5*y + p1/p2)
    		}
    	case x < 8: // 2 <= x < 8
    		i := int(x)
    		y := x - float64(i)
    		p := y * (_lgamS[0] + y*(_lgamS[1]+y*(_lgamS[2]+y*(_lgamS[3]+y*(_lgamS[4]+y*(_lgamS[5]+y*_lgamS[6]))))))
    		q := 1 + y*(_lgamR[1]+y*(_lgamR[2]+y*(_lgamR[3]+y*(_lgamR[4]+y*(_lgamR[5]+y*_lgamR[6])))))
    		lgamma = 0.5*y + p/q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. test/codegen/clobberdead.go

    	// amd64:`MOVL\t\$3735936685, command-line-arguments\.x`, -`MOVL\t\$3735936685, command-line-arguments\.y`
    	// arm64:`MOVW\tR27, command-line-arguments\.x`, -`MOVW\tR27, command-line-arguments\.y`
    	use(x)
    	// amd64:`MOVL\t\$3735936685, command-line-arguments\.x`, `MOVL\t\$3735936685, command-line-arguments\.y`
    	// arm64:`MOVW\tR27, command-line-arguments\.x`, `MOVW\tR27, command-line-arguments\.y`
    	use(y)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/image/draw/draw.go

    	i0 := (r.Min.X - dst.Rect.Min.X) * 4
    	i1 := (r.Max.X - dst.Rect.Min.X) * 4
    	si0 := (sp.X - src.Rect.Min.X) * 4
    	yMax := r.Max.Y - dst.Rect.Min.Y
    
    	y := r.Min.Y - dst.Rect.Min.Y
    	sy := sp.Y - src.Rect.Min.Y
    	for ; y != yMax; y, sy = y+1, sy+1 {
    		dpix := dst.Pix[y*dst.Stride:]
    		spix := src.Pix[sy*src.Stride:]
    
    		for i, si := i0, si0; i < i1; i, si = i+4, si+4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/image/draw/draw_test.go

    	mb := image.Rect(-1e9, -1e9, 1e9, 1e9)
    	if mask != nil {
    		mb = mask.Bounds()
    	}
    	golden := image.NewRGBA(image.Rect(0, 0, b.Max.X, b.Max.Y))
    	for y := r.Min.Y; y < r.Max.Y; y++ {
    		sy := y + sp.Y - r.Min.Y
    		my := y + mp.Y - r.Min.Y
    		for x := r.Min.X; x < r.Max.X; x++ {
    			if !(image.Pt(x, y).In(b)) {
    				continue
    			}
    			sx := x + sp.X - r.Min.X
    			if !(image.Pt(sx, sy).In(sb)) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. src/math/big/int.go

    	return z
    }
    
    // Add sets z to the sum x+y and returns z.
    func (z *Int) Add(x, y *Int) *Int {
    	neg := x.neg
    	if x.neg == y.neg {
    		// x + y == x + y
    		// (-x) + (-y) == -(x + y)
    		z.abs = z.abs.add(x.abs, y.abs)
    	} else {
    		// x + (-y) == x - y == -(y - x)
    		// (-x) + y == y - x == -(x - y)
    		if x.abs.cmp(y.abs) >= 0 {
    			z.abs = z.abs.sub(x.abs, y.abs)
    		} else {
    			neg = !neg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. test/abi/uglyfib.go

    	h(*xm1, xm2, &x, p)
    }
    
    //go:registerparams
    //go:noinline
    func h(x int, xm1, xm2, p *int) {
    	var y = [4]int{x - 4, 0, 0, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    	k(*xm1, xm2, &x, p)
    	f(*xm2, &x, &y[0], p)
    }
    
    //go:registerparams
    //go:noinline
    func k(x int, xm1, xm2, p *int) {
    	var y = [5]int{x - 4, 0, 0, 0, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    	f(*xm2, &x, &y[0], p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/math/big/floatexample_test.go

    	var x, y, z big.Float
    	x.SetInt64(1000)          // x is automatically set to 64bit precision
    	y.SetFloat64(2.718281828) // y is automatically set to 53bit precision
    	z.SetPrec(32)
    	z.Add(&x, &y)
    	fmt.Printf("x = %.10g (%s, prec = %d, acc = %s)\n", &x, x.Text('p', 0), x.Prec(), x.Acc())
    	fmt.Printf("y = %.10g (%s, prec = %d, acc = %s)\n", &y, y.Text('p', 0), y.Prec(), y.Acc())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Neq32  x y) => (NotEqual (CMPW  x y))
    (Neq64  x y) => (NotEqual (CMP   x y))
    (NeqPtr x y) => (NotEqual (CMP   x y))
    (Neq(32|64)F x y) => (NotEqual (FCMP(S|D) x y))
    
    (Less(8|16) x y) => (LessThan (CMPW (SignExt(8|16)to32 x) (SignExt(8|16)to32 y)))
    (Less32 x y) => (LessThan (CMPW x y))
    (Less64 x y) => (LessThan (CMP  x y))
    
    // Set condition flags for floating-point comparisons "x < y"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/loopbce.go

    	return uint64(x - y)
    }
    
    // addU returns x+y. Requires that x+y does not overflow an int64.
    func addU(x int64, y uint64) int64 {
    	if y >= 1<<63 {
    		if x >= 0 {
    			base.Fatalf("addU overflowed %d + %d", x, y)
    		}
    		x += 1<<63 - 1
    		x += 1
    		y -= 1 << 63
    	}
    	if addWillOverflow(x, int64(y)) {
    		base.Fatalf("addU overflowed %d + %d", x, y)
    	}
    	return x + int64(y)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top