Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for floorDiv (0.03 sec)

  1. android/guava-tests/test/com/google/common/math/IntMathTest.java

            assertEquals(i + "^" + pow, BigInteger.valueOf(i).pow(pow).intValue(), IntMath.pow(i, pow));
          }
        }
      }
    
      @AndroidIncompatible // slow
      @GwtIncompatible // Math.floorDiv gets wrong answers for negative divisors
      public void testDivNonZero() {
        for (int p : NONZERO_INTEGER_CANDIDATES) {
          for (int q : NONZERO_INTEGER_CANDIDATES) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/LongMath.java

       * equivalent to regular Java division, {@code p / q}; and if it is {@link RoundingMode#FLOOR},
       * then this method is equivalent to {@link Math#floorDiv(long,long) Math.floorDiv}{@code (p, q)}.
       *
       * @throws ArithmeticException if {@code q == 0}, or if {@code mode == UNNECESSARY} and {@code a}
       *     is not an integer multiple of {@code b}
       */
      @GwtIncompatible // TODO
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/LongMathTest.java

              // Check the assertions we make in the javadoc.
              if (mode == DOWN) {
                assertEquals(p / q, LongMath.divide(p, q, mode));
              } else if (mode == FLOOR) {
                assertEquals(Math.floorDiv(p, q), LongMath.divide(p, q, mode));
              }
            }
          }
        }
      }
    
      @GwtIncompatible // TODO
      @AndroidIncompatible // Bug in older versions of Android we test against, since fixed.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 31.4K bytes
    - Viewed (0)
Back to top