Lines Matching refs:Bigint
201 #undef Bigint
206 #define Bigint _zend_strtod_bigint macro
536 Bigint { struct
537 struct Bigint *next; argument
542 typedef struct Bigint Bigint; argument
544 #ifndef Bigint
545 static Bigint *freelist[Kmax+1];
565 static Bigint *
574 Bigint *rv;
587 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong));
593 len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1)
596 rv = (Bigint*)pmem_next;
600 rv = (Bigint*)MALLOC(len*sizeof(double));
617 (v) Bigint *v; in Bfree()
619 (Bigint *v)
637 static Bigint *
640 (b, m, a) Bigint *b; int m, a; in multadd()
642 (Bigint *b, int m, int a) /* multiply by m and add a */
655 Bigint *b1;
694 static Bigint *
702 Bigint *b;
814 static Bigint *
822 Bigint *b;
830 static Bigint *
833 (a, b) Bigint *a, *b; in mult()
835 (Bigint *a, Bigint *b)
838 Bigint *c;
941 static Bigint *p5s;
944 static Bigint *
947 (b, k) Bigint *b; int k; in pow5mult()
949 (Bigint *b, int k)
952 Bigint *b1, *p5, *p51;
1001 static Bigint *
1004 (b, k) Bigint *b; int k; in lshift()
1006 (Bigint *b, int k)
1010 Bigint *b1;
1064 (a, b) Bigint *a, *b; in cmp()
1066 (Bigint *a, Bigint *b)
1095 static Bigint *
1098 (a, b) Bigint *a, *b; in diff()
1100 (Bigint *a, Bigint *b)
1103 Bigint *c;
1234 (a, e) Bigint *a; int *e; in b2d()
1236 (Bigint *a, int *e)
1301 static Bigint *
1309 Bigint *b;
1438 (a, b) Bigint *a, *b; in ratio()
1440 (Bigint *a, Bigint *b)
1680 static Bigint *
1682 increment(b) Bigint *b; in increment()
1684 increment(Bigint *b)
1688 Bigint *b1;
1717 rshift(b, k) Bigint *b; int k; in rshift()
1719 rshift(Bigint *b, int k)
1750 any_on(b, k) Bigint *b; int k; in any_on()
1752 any_on(Bigint *b, int k)
1793 Bigint *b;
2149 dshift(b, p2) Bigint *b; int p2; in dshift()
2151 dshift(Bigint *b, int p2)
2163 (b, S) Bigint *b, *S; in quorem()
2165 (Bigint *b, Bigint *S)
2316 Bigint *b, *d;
2532 Bigint *bb, *bb1, *bd, *bd0, *bs, *delta;
3612 rem = sizeof(Bigint) - sizeof(ULong) - sizeof(int);
3660 Bigint *b = (Bigint *)((int *)s - 1);
3747 Bigint *b, *b1, *delta, *mlo, *mhi, *S; in zend_dtoa()
4611 Bigint *tmp; in destroy_freelist()
4615 Bigint **listp = &freelist[i]; in destroy_freelist()
4627 Bigint **listp, *tmp; in free_p5s()