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

  /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/chromium/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;
556 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong));
558 len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1
    [all...]

Completed in 36 milliseconds