- t2ex
- bsd_source/lib/libc/src_bsd/stdlib/dtoa.c - 29.8KB - 839 lines
171: #ifdef IEEE_Arith
172: if (!word1(&d) && !(word0(&d) & 0xfffff))
173: return nrv_alloc("Infinity", rve, 8);
- More results from dtoa.c
- bsd_source/lib/libc/src_bsd/stdlib/misc.c - 22.8KB - 908 lines
660: #define d0 word0(&d)
661: #define d1 word1(&d)
662: #endif
- More results from misc.c
- bsd_source/lib/libc/src_bsd/stdlib/strtod.c - 41.4KB - 1,105 lines
76: word0(&u) = Exp_1 + (i << Exp_shift);
77: word1(&u) = 0;
78: return rv * u.d;
- More results from strtod.c
- bsd_source/lib/libc/src_bsd/stdlib/strtodg.c - 41.4KB - 1,154 lines
321: #ifdef VAX
322: L = word1(d) << 16 | word1(d) >> 16;
323: if (L)
- More results from strtodg.c
- bsd_source/lib/libc/src_bsd/stdlib/ulp.c - 2.1KB - 70 lines
52: word0(&a) = L;
53: word1(&a) = 0;
54: #ifndef Sudden_Underflow
- More results from ulp.c