Lines Matching refs:yexp
65 int xexp, yexp; in mul_ext_val() local
67 y = __frexp (y, &yexp); in mul_ext_val()
72 v0->exp += xexp + yexp; in mul_ext_val()
75 v1->exp += xexp + yexp; in mul_ext_val()
113 int xexp = x->exp, yexp = y->exp; in add_split_ext() local
114 if (y->val == 0 || xexp - yexp > 53) in add_split_ext()
117 double lo = __scalbn (y->val, yexp - xexp); in add_split_ext()
132 int xexp, yexp, zexp; in __fmal() local
140 yexp = (hy & 0x7ff0000000000000LL) >> 52; in __fmal()
147 if (zexp == 0x7ff && xexp != 0x7ff && yexp != 0x7ff) in __fmal()
158 if (xexp == 0x7ff || yexp == 0x7ff || zexp == 0x7ff in __fmal()