HomeSort by relevance Sort by last modified time
    Searched defs:Bigint (Results 1 - 3 of 3) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gdtoaimp.h 474 Bigint {
475 struct Bigint *next;
480 typedef struct Bigint Bigint;
574 extern Bigint *Balloc ANSI((int));
575 extern void Bfree ANSI((Bigint*));
582 extern ULong any_on ANSI((Bigint*, int));
583 extern double b2d ANSI((Bigint*, int*));
584 extern int cmp ANSI((Bigint*, Bigint*));
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
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;
558 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong));
560 len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1
    [all...]
  /ndk/sources/android/support/src/stdio/
strtod.c 427 Bigint {
428 struct Bigint *next;
433 typedef struct Bigint Bigint;
455 gethex(CONST char **, CONST FPI *, Long *, Bigint **, int, locale_t);
458 static Bigint *freelist[Kmax+1];
468 /* Special value used to indicate an invalid Bigint value,
470 * want to avoid introducing NULL checks everytime a bigint
476 #define BIGINT_INVALID ((Bigint *)&bigint_invalid_value)
478 static const Bigint bigint_invalid_value
    [all...]

Completed in 40 milliseconds