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

1 2 3 4

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
SimpleBigDecimal.java 22 private final BigInteger bigInt;
41 * constructed <code>SimpleBigDecimal</code> equals <code>bigInt /
43 * @param bigInt The <code>bigInt</code> value parameter.
46 public SimpleBigDecimal(BigInteger bigInt, int scale)
53 this.bigInt = bigInt;
78 return new SimpleBigDecimal(bigInt.shiftLeft(newScale - scale),
85 return new SimpleBigDecimal(bigInt.add(b.bigInt), scale)
    [all...]
LongArray.java 322 public LongArray(BigInteger bigInt)
324 if (bigInt == null || bigInt.signum() < 0)
329 if (bigInt.signum() == 0)
335 byte[] barr = bigInt.toByteArray();
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInteger.java 47 private transient BigInt bigInt;
94 BigInteger(BigInt bigInt) {
95 if (bigInt == null || !bigInt.hasNativeBignum()) {
98 setBigInt(bigInt);
102 BigInt bigInt = new BigInt();
    [all...]
  /cts/tests/security/src/android/keystore/cts/
Asn1Utils.java 147 private static int bigIntegerToInt(BigInteger bigInt) throws CertificateParsingException {
148 if (bigInt.compareTo(BigInteger.valueOf(Integer.MAX_VALUE)) > 0
149 || bigInt.compareTo(BigInteger.ZERO) < 0) {
152 return bigInt.intValue();
155 private static long bigIntegerToLong(BigInteger bigInt) throws CertificateParsingException {
156 if (bigInt.compareTo(BigInteger.valueOf(Long.MAX_VALUE)) > 0
157 || bigInt.compareTo(BigInteger.ZERO) < 0) {
160 return bigInt.longValue();
  /external/guava/guava/src/com/google/common/primitives/
UnsignedLong.java 226 BigInteger bigInt = BigInteger.valueOf(value & UNSIGNED_MASK);
228 bigInt = bigInt.setBit(Long.SIZE - 1);
230 return bigInt;
  /external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationUtil.hpp 405 const int bigInt = ~0u/2;
408 const int wrapLength = wrapLengthParam > 0 ? wrapLengthParam : bigInt;
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/tools/common/offline-m2/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /prebuilts/go/darwin-x86/src/text/template/
exec_test.go 252 // bigInt and bigUint are hex string representing numbers either side
256 bigInt = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeOf(0).Bits()-1)-1))
271 {"ideal int", "{{typeOf " + bigInt + "}}", "int", 0, true},
    [all...]
  /prebuilts/go/linux-x86/src/text/template/
exec_test.go 252 // bigInt and bigUint are hex string representing numbers either side
256 bigInt = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeOf(0).Bits()-1)-1))
271 {"ideal int", "{{typeOf " + bigInt + "}}", "int", 0, true},
    [all...]
  /external/robolectric/v1/lib/main/
commons-codec-1.6.jar 
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
FormatterTest.java     [all...]
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.6/
commons-codec-1.6.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.10/
commons-codec-1.10.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.9/
commons-codec-1.9.jar 
  /prebuilts/tools/common/offline-m2/commons-codec/commons-codec/1.10/
commons-codec-1.10.jar 
  /prebuilts/misc/common/nimbus-jose-jwt/
nimbus-jose-jwt-4.33.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 

Completed in 755 milliseconds

1 2 3 4