/libcore/luni/src/main/java/java/math/ |
BigInt.java | 22 * Moreover BigInt objects are mutable and offer efficient in-place-operations. 24 final class BigInt { 88 private static BigInt newBigInt() { 89 BigInt bi = new BigInt(); 96 static int cmp(BigInt a, BigInt b) { 101 void putCopy(BigInt from) { 106 BigInt copy() { 107 BigInt bi = new BigInt() [all...] |
BigInteger.java | 47 private transient BigInt bigInt; 94 BigInteger(BigInt bigInt) { 95 if (bigInt == null || bigInt.getNativeBIGNUM() == 0) { 98 setBigInt(bigInt); 102 BigInt bigInt = new BigInt(); [all...] |
Primality.java | 92 BigInt ni = n.getBigInt(); 102 BigInt startPoint = ni.copy(); 103 BigInt probPrime = new BigInt(); 106 startPoint.addPositiveInt(BigInt.remainderByPositiveInt(ni, 2) + 1); 116 modules[i] = BigInt.remainderByPositiveInt(startPoint, primes[i]) - gapSize;
|
Multiplication.java | 92 BigInt bi = val.getBigInt().copy();
|
/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; 59 bigInt = limBigDec.bigInt; 84 return new SimpleBigDecimal(bigInt.shiftLeft(newScale - scale) [all...] |
IntArray.java | 23 public IntArray(BigInteger bigInt) 25 this(bigInt, 0); 28 public IntArray(BigInteger bigInt, int minIntLen) 30 if (bigInt.signum() == -1) 34 if (bigInt.equals(ECConstants.ZERO)) 40 byte[] barr = bigInt.toByteArray();
|
/external/chromium/chrome/browser/sync/syncable/ |
syncable_columns.h | 23 {"metahandle", "bigint primary key ON CONFLICT FAIL"}, 24 {"base_version", "bigint default " CHANGES_VERSION_STRING}, 25 {"server_version", "bigint default 0"}, 28 {"mtime", "bigint default 0"}, 29 {"server_mtime", "bigint default 0"}, 30 {"ctime", "bigint default 0"}, 31 {"server_ctime", "bigint default 0"}, 32 {"server_position_in_parent", "bigint default 0"}, 34 {"local_external_id", "bigint default 0"},
|
directory_backing_store_unittest.cc | 79 "CREATE TABLE extended_attributes(metahandle bigint, key varchar(127), " 81 "CREATE TABLE metas (metahandle bigint primary key ON CONFLICT FAIL," 82 "base_version bigint default -1,server_version bigint default 0," 83 "mtime bigint default 0,server_mtime bigint default 0," 84 "ctime bigint default 0,server_ctime bigint default 0," 85 "server_position_in_parent bigint default 0," 86 "local_external_id bigint default 0,id varchar(255) default 'r', [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/ |
H2Map.java | 37 // Map 'integer' (sqlite) to 'bigint(19)' (h2). 38 scrubbedSQL = scrubbedSQL.replaceAll("(?i:integer)", "bigint(19)");
|
/external/chromium/base/third_party/dmg_fp/ |
gcc_warnings.patch | 38 Bigint { 61 - sizeof(Bigint) - sizeof(ULong) - sizeof(int) + j <= i; 62 + sizeof(Bigint) - sizeof(ULong) - sizeof(int) + j <= (size_t)i;
|
dtoa.cc | 524 Bigint { 525 struct Bigint *next; 530 typedef struct Bigint Bigint; 532 static Bigint *freelist[Kmax+1]; 534 static Bigint * 543 Bigint *rv; 556 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong)); 558 len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1 [all...] |
/external/dropbear/libtommath/ |
bn_mp_fread.c | 18 /* read a bigint from a file stream in ASCII */
|
/bionic/libc/stdlib/ |
strtod.c | 363 Bigint { 364 struct Bigint *next; 369 typedef struct Bigint Bigint; 371 static Bigint *freelist[Kmax+1]; 381 /* Special value used to indicate an invalid Bigint value, 383 * want to avoid introducing NULL checks everytime a bigint 389 #define BIGINT_INVALID ((Bigint *)&bigint_invalid_value) 391 static const Bigint bigint_invalid_value; 399 static Bigint * [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TypesTest.java | 30 assertEquals(BIGINT, -5);
|
/external/guava/guava/src/com/google/common/primitives/ |
UnsignedLong.java | 199 BigInteger bigInt = BigInteger.valueOf(value & UNSIGNED_MASK); 201 bigInt = bigInt.setBit(Long.SIZE - 1); 203 return bigInt;
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/ |
H2MapTest.java | 41 assertThat(map.getScrubSQL("integer"), equalTo("bigint(19)"));
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCResultSetMetaData.java | 30 case Types.BIGINT: return "java.lang.Long"; 108 case Types.BIGINT: return "bigint";
|
/external/webkit/Source/JavaScriptCore/wtf/ |
dtoa.cpp | 165 struct BigInt { 166 BigInt() : sign(0) { } 203 static void multadd(BigInt& b, int m, int a) /* multiply by m and add a */ 233 static void s2b(BigInt& b, const char* s, int nd0, int nd, uint32_t y9) 322 static void i2b(BigInt& b, int i) 329 static void mult(BigInt& aRef, const BigInt& bRef) 331 const BigInt* a = &aRef; 332 const BigInt* b = &bRef; 333 BigInt c [all...] |
/external/valgrind/main/coregrind/ |
link_tool_exe_darwin.in | 74 use Math::BigInt; 157 my $stack_addr = Math::BigInt->new( $ala ) - $TX_STACK_OFFSET_BEFORE_TEXT; 159 my $stack_size_str = Math::BigInt::as_hex($TX_STACK_SIZE);
|
/libcore/luni/src/main/java/java/sql/ |
Types.java | 39 * The type code that identifies the SQL type {@code BIGINT}. 41 public static final int BIGINT = -5;
|
/libcore/luni/src/test/java/libcore/java/sql/ |
OldResultSetGetterTests.java | 121 java.lang.Long.class, // Types.BIGINT, 144 java.lang.Long.class, // Types.BIGINT, 145 java.lang.Long.class, // Types.BIGINT, 158 + " Bint BIGINT," + " Tint TINYINT," + " Sint SMALLINT," 175 " MaxLongVal BIGINT, MinLongVal BIGINT, "+ 699 * "BIGINT", "TINYINT", "SMALLINT", "MEDIUMINT", "INTEGER", "REAL", 702 * "LONGBLOB", "TINYTEXT", "TEXT", "MEDIUMTEXT", "LONGTEXT", "BIGINT", 703 * "BIGINT","URL","URL"); 706 "BIGINT", "SMALLINT", "SHORT", "INTEGER", "INTEGER", "FLOAT" [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
IsoTypeReader.java | 102 throw new RuntimeException("I don't know how to deal with UInt64! long is not sufficient and I don't want to use BigInt");
|
/libcore/luni/src/test/java/libcore/sqlite/ |
OldStmtTest.java | 36 + " Bint BIGINT," 59 + " MaxLongVal BIGINT," 60 + " MinLongVal BIGINT," 780 assertTrue(st.column_decltype(3), "BIGINT".equalsIgnoreCase(st
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
SQLiteCursorTest.java | 35 "id INTEGER PRIMARY KEY, name VARCHAR(255), long_value BIGINT," +
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
tsql.php | 50 'bigint', 'int', 'smallint', 'tinyint', 'bit', 'decimal', 'numeric', 'money',
|