Home
last modified time | relevance | path

Searched refs:DP_EBIAS (Results 1 – 11 of 11) sorted by relevance

/linux-2.4.37.9/arch/mips/math-emu/
Dieee754.c35 #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 …]
Dieee754int.h31 #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;\
Ddp_fsp.c46 DP_EMAX + 1 + DP_EBIAS, in ieee754dp_fsp()
72 return builddp(xs, xe + DP_EBIAS, in ieee754dp_fsp()
Dieee754d.c32 #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()
Ddp_modf.c64 *ip = builddp(xs, xe + DP_EBIAS, in ieee754dp_modf()
79 return builddp(xs, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT); in ieee754dp_modf()
Dieee754dp.h54 assert((bx) >= DP_EMIN - 1 + DP_EBIAS in builddp()
55 && (bx) <= DP_EMAX + 1 + DP_EBIAS); in builddp()
Dieee754dp.c236 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()
Ddp_frexp.c52 return builddp(xs, -1 + DP_EBIAS, xm & ~DP_HIDDEN_BIT); in ieee754dp_frexp()
Ddp_simple.c32 return DPBEXP(x) != DP_EMAX + 1 + DP_EBIAS; in ieee754dp_finite()
Ddp_fint.c62 return builddp(xs, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT); in ieee754dp_fint()
Ddp_sqrt.c96 y = x = builddp(0, xe + DP_EBIAS, xm & ~DP_HIDDEN_BIT); in ieee754dp_sqrt()