Lines Matching refs:Bigint
538 Bigint { struct
539 struct Bigint *next; argument
544 typedef struct Bigint Bigint; argument
546 static Bigint *freelist[Kmax+1];
578 static Bigint *
587 Bigint *rv;
600 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong));
606 len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1)
609 rv = (Bigint*)pmem_next;
613 rv = (Bigint*)MALLOC(len*sizeof(double));
630 (v) Bigint *v; in Bfree()
632 (Bigint *v)
654 static Bigint *
657 (b, m, a) Bigint *b; int m, a; in multadd()
659 (Bigint *b, int m, int a) /* multiply by m and add a */
672 Bigint *b1;
711 static Bigint *
719 Bigint *b;
831 static Bigint *
839 Bigint *b;
847 static Bigint *
850 (a, b) Bigint *a, *b; in mult()
852 (Bigint *a, Bigint *b)
855 Bigint *c;
957 static Bigint *p5s;
959 static Bigint *
962 (b, k) Bigint *b; int k; in pow5mult()
964 (Bigint *b, int k)
967 Bigint *b1, *p5, *p51;
1016 static Bigint *
1019 (b, k) Bigint *b; int k; in lshift()
1021 (Bigint *b, int k)
1025 Bigint *b1;
1079 (a, b) Bigint *a, *b; in cmp()
1081 (Bigint *a, Bigint *b)
1110 static Bigint *
1113 (a, b) Bigint *a, *b; in diff()
1115 (Bigint *a, Bigint *b)
1118 Bigint *c;
1249 (a, e) Bigint *a; int *e; in b2d()
1251 (Bigint *a, int *e)
1316 static Bigint *
1324 Bigint *b;
1453 (a, b) Bigint *a, *b; in ratio()
1455 (Bigint *a, Bigint *b)
1695 static Bigint *
1697 increment(b) Bigint *b; in increment()
1699 increment(Bigint *b)
1703 Bigint *b1;
1732 rshift(b, k) Bigint *b; int k; in rshift()
1734 rshift(Bigint *b, int k)
1765 any_on(b, k) Bigint *b; int k; in any_on()
1767 any_on(Bigint *b, int k)
1808 Bigint *b;
2164 dshift(b, p2) Bigint *b; int p2; in dshift()
2166 dshift(Bigint *b, int p2)
2178 (b, S) Bigint *b, *S; in quorem()
2180 (Bigint *b, Bigint *S)
2331 Bigint *b, *d;
2547 Bigint *bb, *bb1, *bd, *bd0, *bs, *delta;
3626 sizeof(Bigint) - sizeof(ULong) - sizeof(int) + (size_t)j <= (size_t)i;
3667 Bigint *b = (Bigint *)((int *)s - 1);
3761 Bigint *b, *b1, *delta, *mlo, *mhi, *S;
4529 Bigint *tmp; in destroy_freelist()
4533 Bigint **listp = &freelist[i]; in destroy_freelist()