Lines Matching refs:exp
78 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */ in fmodl()
79 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */ in fmodl()
80 (uy.bits.exp == BIAS + LDBL_MAX_EXP && in fmodl()
83 if(ux.bits.exp<=uy.bits.exp) { in fmodl()
84 if((ux.bits.exp<uy.bits.exp) || in fmodl()
96 if(ux.bits.exp == 0) { /* subnormal x */ in fmodl()
98 ix = ux.bits.exp - (BIAS + 512); in fmodl()
100 ix = ux.bits.exp - BIAS; in fmodl()
104 if(uy.bits.exp == 0) { /* subnormal y */ in fmodl()
106 iy = uy.bits.exp - (BIAS + 512); in fmodl()
108 iy = uy.bits.exp - BIAS; in fmodl()
142 ux.bits.exp = iy + (BIAS + 512); in fmodl()
145 ux.bits.exp = iy + BIAS; in fmodl()