Lines Matching defs:Bigint
519 Bigint {
520 struct Bigint *next;
525 typedef struct Bigint Bigint;
590 extern Bigint *Balloc ANSI((int));
591 extern void Bfree ANSI((Bigint*));
598 extern ULong any_on ANSI((Bigint*, int));
599 extern double b2d ANSI((Bigint*, int*));
600 extern int cmp ANSI((Bigint*, Bigint*));
601 extern void copybits ANSI((ULong*, int, Bigint*));
602 extern Bigint *d2b ANSI((double, int*, int*));
603 extern void decrement ANSI((Bigint*));
604 extern Bigint *diff ANSI((Bigint*, Bigint*));
608 extern int gethex ANSI((CONST char**, CONST FPI*, Long*, Bigint**, int, locale_t));
612 extern Bigint *i2b ANSI((int));
613 extern Bigint *increment ANSI((Bigint*));
615 extern Bigint *lshift ANSI((Bigint*, int));
617 extern Bigint *mult ANSI((Bigint*, Bigint*));
618 extern Bigint *multadd ANSI((Bigint*, int, int));
620 extern Bigint *pow5mult ANSI((Bigint*, int));
621 extern int quorem ANSI((Bigint*, Bigint*));
622 extern double ratio ANSI((Bigint*, Bigint*));
623 extern void rshift ANSI((Bigint*, int));
625 extern Bigint *s2b ANSI((CONST char*, int, int, ULong, size_t));
626 extern Bigint *set_ones ANSI((Bigint*, int));
628 extern int strtoIg ANSI((CONST char*, char**, CONST FPI*, Long*, Bigint**, int*));
630 extern Bigint *sum ANSI((Bigint*, Bigint*));
631 extern int trailz ANSI((CONST Bigint*));