Searched defs:BigInteger (Results 1 - 10 of 10) sorted by relevance

/external/v8/benchmarks/
H A Dcrypto.js58 function BigInteger(a,b,c) { class
66 // return new, unset BigInteger
67 function nbi() { return new BigInteger(null); }
148 BigInteger.prototype.am = fn;
239 if(mi) BigInteger.ZERO.subTo(this,this);
281 function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); return r; }
427 if(this.s != a.s) BigInteger.ZERO.subTo(r,r);
482 BigInteger.ONE.dlShiftTo(ys,t);
496 if(ts != ms) BigInteger.ZERO.subTo(q,q);
501 if(ts < 0) BigInteger
[all...]
/external/pdfium/third_party/bigint/
H A DBigInteger.cc7 #include "BigInteger.hh"
9 void BigInteger::operator =(const BigInteger &x) {
19 BigInteger::BigInteger(const Blk *b, Index blen, Sign s) : mag(b, blen) { function in class:BigInteger
38 BigInteger::BigInteger(const BigUnsigned &x, Sign s) : mag(x) { function in class:BigInteger
59 * negative BigInteger instead of an exception. */
62 BigInteger::BigInteger(unsigne function in class:BigInteger
63 BigInteger::BigInteger(unsigned int x) : mag(x) { sign = mag.isZero() ? zero : positive; } function in class:BigInteger
64 BigInteger::BigInteger(unsigned short x) : mag(x) { sign = mag.isZero() ? zero : positive; } function in class:BigInteger
83 BigInteger::BigInteger(long x) : sign(signOf(x)), mag(magOf<long , unsigned long >(x)) {} function in class:BigInteger
84 BigInteger::BigInteger(int x) : sign(signOf(x)), mag(magOf<int , unsigned int >(x)) {} function in class:BigInteger
85 BigInteger::BigInteger(short x) : sign(signOf(x)), mag(magOf<short, unsigned short>(x)) {} function in class:BigInteger
[all...]
H A DBigInteger.hh12 /* A BigInteger object represents a signed integer of size limited only by
16 * A BigInteger is just an aggregate of a BigUnsigned and a sign. (It is no
19 class BigInteger { class
29 // Enumeration for the sign of a BigInteger.
38 BigInteger() : sign(zero), mag() {} function in class:BigInteger
41 BigInteger(const BigInteger &x) : sign(x.sign), mag(x.mag) {}; function in class:BigInteger
44 void operator=(const BigInteger &x);
47 BigInteger(const Blk *b, Index blen, Sign s);
50 BigInteger(cons function in class:BigInteger
58 BigInteger(const BigUnsigned &x) : mag(x) { function in class:BigInteger
[all...]
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 277 milliseconds