Searched refs:DP_EBIAS (Results 1 – 11 of 11) sorted by relevance
/linux-2.4.37.9/arch/mips/math-emu/ |
D | ieee754.c | 35 #define DP_EBIAS 1023 macro 72 DPSTR(0, DP_EMIN - 1 + DP_EBIAS, 0, 0), /* + zero */ 73 DPSTR(1, DP_EMIN - 1 + DP_EBIAS, 0, 0), /* - zero */ 74 DPSTR(0, DP_EBIAS, 0, 0), /* + 1.0 */ 75 DPSTR(1, DP_EBIAS, 0, 0), /* - 1.0 */ 76 DPSTR(0, 3 + DP_EBIAS, 0x40000, 0), /* + 10.0 */ 77 DPSTR(1, 3 + DP_EBIAS, 0x40000, 0), /* - 10.0 */ 78 DPSTR(0, DP_EMAX + 1 + DP_EBIAS, 0, 0), /* + infinity */ 79 DPSTR(1, DP_EMAX + 1 + DP_EBIAS, 0, 0), /* - infinity */ 80 DPSTR(0,DP_EMAX+1+DP_EBIAS,0x7FFFF,0xFFFFFFFF), /* + indef quiet Nan */ [all …]
|
D | ieee754int.h | 31 #define DP_EBIAS 1023 macro 118 if(ve == DP_EMAX+1+DP_EBIAS){\ 125 } else if(ve == DP_EMIN-1+DP_EBIAS) {\ 132 ve -= DP_EBIAS;\ 145 ve = DP_EMIN-1+DP_EBIAS;\
|
D | dp_fsp.c | 46 DP_EMAX + 1 + DP_EBIAS, in ieee754dp_fsp() 72 return builddp(xs, xe + DP_EBIAS, in ieee754dp_fsp()
|
D | ieee754d.c | 32 #define DP_EBIAS 1023 macro 85 printk("e%d", DPBEXP(x) - DP_EBIAS); in ieee754dp_dump() 91 printk("e%d", DPBEXP(x) - DP_EBIAS); in ieee754dp_dump()
|
D | dp_modf.c | 64 *ip = builddp(xs, xe + DP_EBIAS, in ieee754dp_modf() 79 return builddp(xs, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT); in ieee754dp_modf()
|
D | ieee754dp.h | 54 assert((bx) >= DP_EMIN - 1 + DP_EBIAS in builddp() 55 && (bx) <= DP_EMAX + 1 + DP_EBIAS); in builddp()
|
D | ieee754dp.c | 236 return builddp(sn, DP_EMIN - 1 + DP_EBIAS, xm); in ieee754dp_format() 241 return builddp(sn, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT); in ieee754dp_format()
|
D | dp_frexp.c | 52 return builddp(xs, -1 + DP_EBIAS, xm & ~DP_HIDDEN_BIT); in ieee754dp_frexp()
|
D | dp_simple.c | 32 return DPBEXP(x) != DP_EMAX + 1 + DP_EBIAS; in ieee754dp_finite()
|
D | dp_fint.c | 62 return builddp(xs, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT); in ieee754dp_fint()
|
D | dp_sqrt.c | 96 y = x = builddp(0, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT); in ieee754dp_sqrt()
|