Lines Matching refs:Bigint

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)
561 rv = (Bigint*)pmem_next;
565 rv = (Bigint*)MALLOC(len*sizeof(double));
578 (v) Bigint *v;
580 (Bigint *v)
602 static Bigint *
605 (b, m, a) Bigint *b; int m, a;
607 (Bigint *b, int m, int a) /* multiply by m and add a */
620 Bigint *b1;
659 static Bigint *
667 Bigint *b;
779 static Bigint *
787 Bigint *b;
795 static Bigint *
798 (a, b) Bigint *a, *b;
800 (Bigint *a, Bigint *b)
803 Bigint *c;
905 static Bigint *p5s;
907 static Bigint *
910 (b, k) Bigint *b; int k;
912 (Bigint *b, int k)
915 Bigint *b1, *p5, *p51;
964 static Bigint *
967 (b, k) Bigint *b; int k;
969 (Bigint *b, int k)
973 Bigint *b1;
1027 (a, b) Bigint *a, *b;
1029 (Bigint *a, Bigint *b)
1058 static Bigint *
1061 (a, b) Bigint *a, *b;
1063 (Bigint *a, Bigint *b)
1066 Bigint *c;
1197 (a, e) Bigint *a; int *e;
1199 (Bigint *a, int *e)
1264 static Bigint *
1272 Bigint *b;
1401 (a, b) Bigint *a, *b;
1403 (Bigint *a, Bigint *b)
1632 rshift(b, k) Bigint *b; int k;
1634 rshift(Bigint *b, int k)
1665 any_on(b, k) Bigint *b; int k;
1667 any_on(Bigint *b, int k)
1700 static Bigint *
1702 increment(b) Bigint *b;
1704 increment(Bigint *b)
1708 Bigint *b1;
1739 Bigint *b;
2094 dshift(b, p2) Bigint *b; int p2;
2096 dshift(Bigint *b, int p2)
2108 (b, S) Bigint *b, *S;
2110 (Bigint *b, Bigint *S)
2234 Bigint *b, *d;
2440 Bigint *bb, *bb1, *bd, *bd0, *bs, *delta;
3437 sizeof(Bigint) - sizeof(ULong) - sizeof(int) + j <= (size_t)i;
3478 Bigint *b = (Bigint *)((int *)s - 1);
3572 Bigint *b, *b1, *delta, *mlo, *mhi, *S;