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

1 2

  /dalvik/tests/055-enum-performance/src/
SamePackagePrivateEnum.java 3 TEN, ELEVEN, TWELVE, THIRTEEN, FOURTEEN, FIFTEEN, SIXTEEN,
SamePackagePublicEnum.java 3 TEN, ELEVEN, TWELVE, THIRTEEN, FOURTEEN, FIFTEEN, SIXTEEN,
  /dalvik/tests/055-enum-performance/src/otherpackage/
OtherPackagePublicEnum.java 5 TEN, ELEVEN, TWELVE, THIRTEEN, FOURTEEN, FIFTEEN, SIXTEEN,
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs7/
SignerInfoTest.java 37 BigInteger.TEN.toByteArray() };
  /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;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
TSTInfoTest.java 60 TSTInfo info = new TSTInfo(1, policy, msgImprint, BigInteger.TEN,
72 assertEquals("Decoded serialNumber is incorrect", BigInteger.TEN,
TimeStampRespTest.java 76 TSTInfo tSTInfo = new TSTInfo(1, policy, msgImprint, 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);
149 * 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...]
BigDecimal.java 128 * An array with powers of ten that fit in the type <code>long</code>
213 * The constant ten as a {@code BigDecimal}.
215 public static final BigDecimal TEN = new BigDecimal(10, 0);
    [all...]
  /external/guava/guava-tests/test/com/google/common/math/
BigIntegerMathTest.java 27 import static java.math.BigInteger.TEN;
178 assertTrue(TEN.pow(result).compareTo(x) <= 0);
179 assertTrue(TEN.pow(result + 1).compareTo(x) > 0);
188 assertTrue(TEN.pow(result).compareTo(x) >= 0);
189 assertTrue(result == 0 || TEN.pow(result - 1).compareTo(x) < 0);
198 boolean expectSuccess = TEN.pow(logFloor).equals(x);
213 assertTrue(TEN.pow(2 * result + 1).compareTo(x2) > 0);
215 assertTrue(result == 0 || TEN.pow(2 * result - 1).compareTo(x2) <= 0);
224 assertTrue(TEN.pow(2 * result + 1).compareTo(x2) >= 0);
226 assertTrue(result == 0 || TEN.pow(2 * result - 1).compareTo(x2) < 0)
    [all...]
LongMathTest.java 64 assertEquals(BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR),
68 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * LongMath.HALF_POWERS_OF_10.length + 1), FLOOR);
IntMathTest.java 66 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR).longValue());
  /external/aac/libAACenc/src/
psy_configuration.cpp 396 FIXP_DBL TEN = (FIXP_DBL)0x50000000; /* 10.0 in q27 */
415 TEN, 27);
419 TEN, 27);
423 TEN, 27);
427 TEN, 27);
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 123 * is not a power of ten
134 BigInteger powerOf10 = BigInteger.TEN;
167 BigInteger halfPowerSquared = floorPow.pow(2).multiply(BigInteger.TEN);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
FormatterTest.java     [all...]
  /external/apache-harmony/math/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);
BigDecimalCompareTest.java 508 BigDecimal testInstance = BigDecimal.TEN.multiply(new BigDecimal("0.1"));
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersTest.java 527 BigInteger q = BigInteger.TEN;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersTest.java 598 BigInteger q = BigInteger.TEN;
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 

Completed in 831 milliseconds

1 2