OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BigInt
(Results
1 - 7
of
7
) sorted by null
/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();
BigDecimal.java
495
BigInt
bi = new
BigInt
();
767
BigInt
bi = Multiplication.multiplyByTenPow(augend.getUnscaledValue(),diffScale).getBigInt();
[
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);
/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
...]
Completed in 598 milliseconds