Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for unrepresentable (0.28 sec)

  1. src/math/cmplx/tan.go

    func reducePi(x float64) float64 {
    	// reduceThreshold is the maximum value of x where the reduction using
    	// Cody-Waite reduction still gives accurate results. This threshold
    	// is set by t*PIn being representable as a float64 without error
    	// where t is given by t = floor(x * (1 / Pi)) and PIn are the leading partial
    	// terms of Pi. Since the leading terms, PI1 and PI2 below, have 30 and 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/IntMath.java

       * @throws ArithmeticException of the next-higher power of two is not representable as an {@code
       *     int}, i.e. when {@code x > 2^30}
       * @since 20.0
       */
      public static int ceilingPowerOfTwo(int x) {
        checkPositive("x", x);
        if (x > MAX_SIGNED_POWER_OF_TWO) {
          throw new ArithmeticException("ceilingPowerOfTwo(" + x + ") not representable as an int");
        }
        return 1 << -Integer.numberOfLeadingZeros(x - 1);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/IntMath.java

       * @throws ArithmeticException of the next-higher power of two is not representable as an {@code
       *     int}, i.e. when {@code x > 2^30}
       * @since 20.0
       */
      public static int ceilingPowerOfTwo(int x) {
        checkPositive("x", x);
        if (x > MAX_SIGNED_POWER_OF_TWO) {
          throw new ArithmeticException("ceilingPowerOfTwo(" + x + ") not representable as an int");
        }
        return 1 << -Integer.numberOfLeadingZeros(x - 1);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/amount.go

    // AsScaledInt64 returns an int64 representing the value of this amount at the specified scale,
    // rounding up, or false if that would result in overflow. (1e20).AsScaledInt64(1) would result
    // in overflow because 1e19 is not representable as an int64. Note that setting a scale larger
    // than the current value may result in loss of precision - i.e. (1e-6).AsScaledInt64(0) would
    // return 1, because 0.000001 is rounded up to 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 19:42:28 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // unsigned number x + N.
      //
      // For instance,
      //
      //   -N + 1 (the most negative number representable using
      //          sign-and-magnitude) is represented by 1;
      //   0      is represented by N; and
      //   N - 1  (the biggest number representable using
      //          sign-and-magnitude) is represented by 2N - 1.
      //
      // Read http://en.wikipedia.org/wiki/Signed_number_representations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // unsigned number x + N.
      //
      // For instance,
      //
      //   -N + 1 (the most negative number representable using
      //          sign-and-magnitude) is represented by 1;
      //   0      is represented by N; and
      //   N - 1  (the biggest number representable using
      //          sign-and-magnitude) is represented by 2N - 1.
      //
      // Read http://en.wikipedia.org/wiki/Signed_number_representations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/html/template/js_test.go

    		{int64(-42), " -42 ", false},
    		{uint64(42), " 42 ", false},
    		{uint64(1) << 53, " 9007199254740992 ", false},
    		// ulp(1 << 53) > 1 so this loses precision in JS
    		// but it is still a representable integer literal.
    		{uint64(1)<<53 + 1, " 9007199254740993 ", false},
    		{float32(1.0), " 1 ", false},
    		{float32(-1.0), " -1 ", false},
    		{float32(0.5), " 0.5 ", false},
    		{float32(-0.5), " -0.5 ", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/go/types/index.go

    		if !allowNegative && constant.Sign(x.val) < 0 {
    			check.errorf(x, code, invalidArg+"%s %s must not be negative", what, x)
    			return false
    		}
    
    		// spec: "... and representable by a value of type int"
    		if !representableConst(x.val, check, Typ[Int], &x.val) {
    			check.errorf(x, code, invalidArg+"%s %s overflows int", what, x)
    			return false
    		}
    	}
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/issues0.go

    	_ = map[int]I1{0: i2 /* ERROR "wrong type for method foo" */ }
    
    	make(chan I1) <- i0 /* ERROR "missing method foo" */
    	make(chan I1) <- i2 /* ERROR "wrong type for method foo" */
    }
    
    // Check that constants representable as integers are in integer form
    // before being used in operations that are only defined on integers.
    func issue14229() {
    	// from the issue
    	const _ = int64(-1<<63) % 1e6
    
    	// related
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/index.go

    		if !allowNegative && constant.Sign(x.val) < 0 {
    			check.errorf(x, code, invalidArg+"%s %s must not be negative", what, x)
    			return false
    		}
    
    		// spec: "... and representable by a value of type int"
    		if !representableConst(x.val, check, Typ[Int], &x.val) {
    			check.errorf(x, code, invalidArg+"%s %s overflows int", what, x)
    			return false
    		}
    	}
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top