Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getExponent (0.3 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/math/DoubleMath.java

       */
      @GwtIncompatible // java.lang.Math.getExponent, com.google.common.math.DoubleUtils
      // Whenever both tests are cheap and functional, it's faster to use &, | instead of &&, ||
      @SuppressWarnings({"fallthrough", "ShortCircuitBoolean"})
      public static int log2(double x, RoundingMode mode) {
        checkArgument(x > 0.0 && isFinite(x), "x must be positive and finite");
        int exponent = getExponent(x);
        if (!isNormal(x)) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 19.3K bytes
    - Click Count (0)
Back to Top