Home | History | Annotate | Download | only in quad

Lines Matching defs:exp

1 /*	$NetBSD: fixunssfdi_ieee754.c,v 1.1 2013/08/24 00:51:48 matt Exp $	*/
38 __RCSID("$NetBSD: fixunssfdi_ieee754.c,v 1.1 2013/08/24 00:51:48 matt Exp $");
58 signed int exp = ux.sngu_exp - SNG_EXP_BIAS;
63 if (exp > 63)
65 if (exp < 0)
70 exp -= SNG_FRACBITS;
71 if (exp == 0)
73 if (exp < 0)
74 return r >> -exp;
76 return r << exp;