123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #define NE 6
- #define NI (NE+3)
- #define E 1
- #define M 2
- #define NBITS ((NI-4)*16)
- #define NDEC (NBITS*8/27)
- #define EXONE (0x3fff)
- void eadd(), esub(), emul(), ediv();
- int ecmp(), enormlz(), eshift();
- void eshup1(), eshup8(), eshup6(), eshdn1(), eshdn8(), eshdn6();
- void eabs(), eneg(), emov(), eclear(), einfin(), efloor();
- void eldexp(), efrexp(), eifrac(), ltoe();
- void esqrt(), elog(), eexp(), etanh(), epow();
- void asctoe(), asctoe24(), asctoe53(), asctoe64();
- void etoasc(), e24toasc(), e53toasc(), e64toasc();
- void etoe64(), etoe53(), etoe24(), e64toe(), e53toe(), e24toe();
- void mtherr();
- extern unsigned short ezero[], ehalf[], eone[], etwo[];
- extern unsigned short elog2[], esqrt2[];
|