Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for powx (0.07 sec)

  1. src/cmd/cgo/internal/test/issue8756/issue8756.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue8756
    
    /*
    #cgo !darwin LDFLAGS: -lm
    #include <math.h>
    */
    import "C"
    
    func Pow() {
    	C.pow(1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 269 bytes
    - Viewed (0)
  2. test/float_lit.go

    // Test floating-point literal syntax.
    
    package main
    
    var bad bool
    
    func pow10(pow int) float64 {
    	if pow < 0 {
    		return 1 / pow10(-pow)
    	}
    	if pow > 0 {
    		return pow10(pow-1) * 10
    	}
    	return 1
    }
    
    func close(da float64, ia, ib int64, pow int) bool {
    	db := float64(ia) / float64(ib)
    	db *= pow10(pow)
    
    	if da == 0 || db == 0 {
    		if da == 0 && db == 0 {
    			return true
    		}
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/DoubleMathTest.java

          if (d >= 1.0) {
            assertTrue(log2 >= 0);
            assertTrue(StrictMath.pow(2.0, log2) <= d);
            assertTrue(StrictMath.pow(2.0, log2 + 1) > d);
          } else {
            assertTrue(log2 <= 0);
            assertTrue(StrictMath.pow(2.0, log2) >= d);
            assertTrue(StrictMath.pow(2.0, log2 - 1) < d);
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/math/all_test.go

    	Pi,              // pow(+Pi, 1)
    	Inf(1),          // pow(+Pi, +Inf)
    	NaN(),           // pow(+Pi, NaN)
    	0,               // pow(+Inf, -Pi)
    	1,               // pow(+Inf, -0)
    	1,               // pow(+Inf, +0)
    	Inf(1),          // pow(+Inf, 1)
    	Inf(1),          // pow(+Inf, Pi)
    	NaN(),           // pow(+Inf, NaN)
    	NaN(),           // pow(NaN, -Pi)
    	1,               // pow(NaN, -0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/IntMathTest.java

          }
        }
      }
    
      @GwtIncompatible // 2147483646^2 expected=4
      public void testPow() {
        for (int i : ALL_INTEGER_CANDIDATES) {
          for (int pow : EXPONENTS) {
            assertEquals(i + "^" + pow, BigInteger.valueOf(i).pow(pow).intValue(), IntMath.pow(i, pow));
          }
        }
      }
    
      @AndroidIncompatible // slow
      public void testDivNonZero() {
        for (int p : NONZERO_INTEGER_CANDIDATES) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/arith_test.go

    		}
    		if want, got := int8(i)%int8(pow2[2]) == 0, divisible_int8_2to2(int8(i)); got != want {
    			t.Errorf("divisible_int8_2to2(%d) = %v want %v", i, got, want)
    		}
    		if want, got := int8(i)%int8(pow2[3]) == 0, divisible_int8_2to3(int8(i)); got != want {
    			t.Errorf("divisible_int8_2to3(%d) = %v want %v", i, got, want)
    		}
    		if want, got := int8(i)%int8(pow2[4]) == 0, divisible_int8_2to4(int8(i)); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue8756.go

    package cgotest
    
    /*
    #cgo !darwin LDFLAGS: -lm
    #include <math.h>
    */
    import "C"
    import (
    	"testing"
    
    	"cmd/cgo/internal/test/issue8756"
    )
    
    func test8756(t *testing.T) {
    	issue8756.Pow()
    	C.pow(1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 359 bytes
    - Viewed (0)
  8. test/fixedbugs/bug258.go

    package main
    
    import "math"
    
    func f() float64 {
    	math.Pow(2, 2)
    	return 1
    }
    
    func main() {
    	for i := 0; i < 10; i++ {
    		// 386 float register bug used to load constant before call
    		if -5 < f() {
    		} else {
    			println("BUG 1")
    			return
    		}
    		if f() > -7 {
    		} else {
    			println("BUG 2")
    		}
    		
    		if math.Pow(2, 3) != 8 {
    			println("BUG 3")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 519 bytes
    - Viewed (0)
  9. src/image/draw/example_test.go

    	const width = 130
    	const height = 50
    
    	im := image.NewGray(image.Rectangle{Max: image.Point{X: width, Y: height}})
    	for x := 0; x < width; x++ {
    		for y := 0; y < height; y++ {
    			dist := math.Sqrt(math.Pow(float64(x-width/2), 2)/3+math.Pow(float64(y-height/2), 2)) / (height / 1.5) * 255
    			var gray uint8
    			if dist > 255 {
    				gray = 255
    			} else {
    				gray = uint8(dist)
    			}
    			im.SetGray(x, y, color.Gray{Y: 255 - gray})
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. src/math/big/floatconv.go

    		return
    	}
    	// exp5 != 0
    
    	// apply 5**exp5
    	p := new(Float).SetPrec(z.Prec() + 64) // use more bits for p -- TODO(gri) what is the right number?
    	if exp5 < 0 {
    		z.Quo(z, p.pow5(uint64(-exp5)))
    	} else {
    		z.Mul(z, p.pow5(uint64(exp5)))
    	}
    
    	return
    }
    
    // These powers of 5 fit into a uint64.
    //
    //	for p, q := uint64(0), uint64(1); p < q; p, q = q, q*5 {
    //		fmt.Println(q)
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top