HomeSort by relevance Sort by last modified time
    Searched refs:Bigint (Results 1 - 13 of 13) 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...]
sum.c 34 Bigint *
36 sum(a, b) Bigint *a; Bigint *b;
38 sum(Bigint *a, Bigint *b)
41 Bigint *c;
gmisc.c 36 rshift(b, k) Bigint *b; int k;
38 rshift(Bigint *b, int k)
69 trailz(b) Bigint *b;
71 trailz(Bigint *b)
smisc.c 34 Bigint *
42 Bigint *b;
85 (a, b) Bigint *a, *b;
87 (Bigint *a, Bigint *b)
145 copybits(c, n, b) ULong *c; int n; Bigint *b;
147 copybits(ULong *c, int n, Bigint *b)
175 any_on(b, k) Bigint *b; int k;
177 any_on(Bigint *b, int k)
misc.c 34 static Bigint *freelist[Kmax+1];
43 Bigint *
52 Bigint *rv;
66 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong));
70 len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1)
73 rv = (Bigint*)pmem_next;
77 rv = (Bigint*)MALLOC(len*sizeof(double));
93 (v) Bigint *v;
95 (Bigint *v
    [all...]
dmisc.c 49 sizeof(Bigint) - sizeof(ULong) - sizeof(int) + j <= i;
99 Bigint *b = (Bigint *)((int *)s - 1);
111 (b, S) Bigint *b, *S;
113 (Bigint *b, Bigint *S)
strtodg.c 47 Bigint *
49 increment(b) Bigint *b;
51 increment(Bigint *b)
55 Bigint *b1;
96 decrement(b) Bigint *b;
98 decrement(Bigint *b)
128 all_on(b, n) Bigint *b; int n;
130 all_on(Bigint *b, int n)
145 Bigint *
147 set_ones(b, n) Bigint *b; int n
    [all...]
gethex.c 41 CONST char **sp; FPI *fpi; Long *exp; Bigint **bp; int sign;
43 gethex( CONST char **sp, FPI *fpi, Long *exp, Bigint **bp, int sign)
46 Bigint *b;
gdtoa.c 34 static Bigint *
42 Bigint *b;
162 Bigint *b, *b1, *delta, *mlo, *mhi, *mhi1, *S;
dtoa.c 126 Bigint *b, *b1, *delta, *mlo, *mhi, *S;
strtod.c 100 Bigint *bb = NULL, *bb1, *bd = NULL, *bd0 = NULL, *bs = NULL, *delta = NULL;
  /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...]
  /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...]

Completed in 161 milliseconds