HomeSort by relevance Sort by last modified time
    Searched refs:TEN (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /art/test/055-enum-performance/src/
SamePackagePrivateEnum.java 3 TEN, ELEVEN, TWELVE, THIRTEEN, FOURTEEN, FIFTEEN, SIXTEEN,
SamePackagePublicEnum.java 3 TEN, ELEVEN, TWELVE, THIRTEEN, FOURTEEN, FIFTEEN, SIXTEEN,
  /art/test/055-enum-performance/src/otherpackage/
OtherPackagePublicEnum.java 5 TEN, ELEVEN, TWELVE, THIRTEEN, FOURTEEN, FIFTEEN, SIXTEEN,
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue332/
DataTest.java 29 Data data = new Data("Voltage", BigDecimal.TEN, "V");
  /libcore/luni/src/test/java/tests/security/interfaces/
DSAParamsTest.java 27 private final BigInteger q = BigInteger.TEN;
DSAKeyPairGeneratorTest.java 33 private final BigInteger q = BigInteger.TEN;
  /libcore/luni/src/main/java/java/math/
Multiplication.java 37 * An array with powers of ten that fit in the type {@code int}.
54 * An array with the first powers of ten in {@code BigInteger} version.
78 bigTenPows[i] = bigTenPows[i - 1].multiply(BigInteger.TEN);
98 * Multiplies a number by a power of ten.
112 * It calculates a power of ten, which exponent could be out of 32-bit range.
115 * @param exp the exponent of power of ten, it must be positive.
127 return BigInteger.TEN.pow(intExp);
140 * This branch probably won't be executed since the power of ten is too
BigInteger.java 72 public static final BigInteger TEN = new BigInteger(1, 10);
81 new BigInteger(1, 9), TEN };
    [all...]
  /external/guava/guava-tests/test/com/google/common/math/
BigIntegerMathTest.java 25 import static java.math.BigInteger.TEN;
179 assertTrue(TEN.pow(result).compareTo(x) <= 0);
180 assertTrue(TEN.pow(result + 1).compareTo(x) > 0);
190 assertTrue(TEN.pow(result).compareTo(x) >= 0);
191 assertTrue(result == 0 || TEN.pow(result - 1).compareTo(x) < 0);
201 boolean expectSuccess = TEN.pow(logFloor).equals(x);
217 assertTrue(TEN.pow(2 * result + 1).compareTo(x2) > 0);
219 assertTrue(result == 0 || TEN.pow(2 * result - 1).compareTo(x2) <= 0);
229 assertTrue(TEN.pow(2 * result + 1).compareTo(x2) >= 0);
231 assertTrue(result == 0 || TEN.pow(2 * result - 1).compareTo(x2) < 0)
    [all...]
LongMathTest.java 79 assertEquals(BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR),
83 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * LongMath.halfPowersOf10.length + 1), FLOOR);
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 125 * is not a power of ten
136 BigInteger approxPow = BigInteger.TEN.pow(approxLog10);
152 approxPow = approxPow.divide(BigInteger.TEN);
156 BigInteger nextPow = BigInteger.TEN.multiply(approxPow);
162 nextPow = BigInteger.TEN.multiply(approxPow);
188 BigInteger halfPowerSquared = floorPow.pow(2).multiply(BigInteger.TEN);
  /external/aac/libAACenc/src/
psy_configuration.cpp 372 FIXP_DBL TEN = (FIXP_DBL)0x50000000; /* 10.0 in q27 */
386 fMult(MASKHIGH, (pbBarcValue[i] - pbBarcValue[i - 1])), 23, TEN, 27);
389 fMult(MASKLOW, (pbBarcValue[i] - pbBarcValue[i - 1])), 23, TEN, 27);
392 fMult(MASKHIGHSPREN, (pbBarcValue[i] - pbBarcValue[i - 1])), 23, TEN,
396 fMult(MASKLOWSPREN, (pbBarcValue[i] - pbBarcValue[i - 1])), 23, TEN,
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
BarPlotExampleActivity.java 71 TEN,
202 spSeriesSize.setSelection(SeriesSize.TEN.ordinal());
206 case TEN:
  /packages/apps/ExactCalculator/src/com/android/calculator2/
BoundedRational.java 113 return TEN;
154 String digits = mNum.abs().multiply(BigInteger.TEN.pow(n)).divide(mDen.abs()).toString();
430 public final static BoundedRational TEN = new BoundedRational(10);
529 * if r is a power of ten.
CalculatorExpr.java 282 BigInteger den = BigInteger.TEN.pow(mFraction.length());
284 num = num.multiply(BigInteger.TEN.pow(mExponent));
287 den = den.multiply(BigInteger.TEN.pow(-mExponent));
797 return new EvalRet(argVal.pos, argVal.val.ln().divide(UnifiedReal.TEN.ln()));
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DecimalQuantity_64BitBCD.java 128 BigInteger[] temp = n.divideAndRemainder(BigInteger.TEN);
DecimalQuantity_ByteArrayBCD.java 145 BigInteger[] temp = n.divideAndRemainder(BigInteger.TEN);
DecimalQuantity_SimpleStorage.java 463 /** @return The power of ten of the highest digit represented by this DecimalQuantity */
481 * @param delta The number of powers of ten to shift (positive shifts to the left).
610 BigDecimal temp = fallback.multiply(BigDecimal.TEN);
611 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
741 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
742 BigDecimal temp = fallback.divide(BigDecimal.TEN).setScale(0, RoundingMode.FLOOR);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DecimalQuantity_64BitBCD.java 125 BigInteger[] temp = n.divideAndRemainder(BigInteger.TEN);
DecimalQuantity_ByteArrayBCD.java 142 BigInteger[] temp = n.divideAndRemainder(BigInteger.TEN);
DecimalQuantity_SimpleStorage.java 460 /** @return The power of ten of the highest digit represented by this DecimalQuantity */
478 * @param delta The number of powers of ten to shift (positive shifts to the left).
607 BigDecimal temp = fallback.multiply(BigDecimal.TEN);
608 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
738 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
739 BigDecimal temp = fallback.divide(BigDecimal.TEN).setScale(0, RoundingMode.FLOOR);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
FormatterTest.java     [all...]
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
LongsTest.java 432 Longs.tryParse(BigInteger.valueOf(MAX_VALUE).multiply(BigInteger.TEN).toString()));
436 Longs.tryParse(BigInteger.valueOf(MIN_VALUE).multiply(BigInteger.TEN).toString()));
  /external/guava/guava-tests/test/com/google/common/primitives/
LongsTest.java 465 Longs.tryParse(BigInteger.valueOf(MAX_VALUE).multiply(BigInteger.TEN).toString()));
469 Longs.tryParse(BigInteger.valueOf(MIN_VALUE).multiply(BigInteger.TEN).toString()));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalConstructorsTest.java 46 * check TEN
51 assertEquals("incorrect string value", oneS, BigDecimal.TEN.toString());
52 assertEquals("incorrect double value", oneD, BigDecimal.TEN.doubleValue(), 0);

Completed in 1094 milliseconds

1 2 3 4 5