Lines Matching refs:b
21 float a = x, b = y, t1, t2, y1, y2, w; in hypotf() local
34 SET_FLOAT_WORD(b, hb); /* b <- |b| */ in hypotf()
36 return a + b; in hypotf()
41 w = a + b; /* for sNaN */ in hypotf()
42 if (FLT_UWORD_IS_INFINITE(ha) && !issignaling(b)) in hypotf()
45 w = b; in hypotf()
53 SET_FLOAT_WORD(b, hb); in hypotf()
60 b *= t1; in hypotf()
68 SET_FLOAT_WORD(b, hb); in hypotf()
72 w = a - b; in hypotf()
73 if (w > b) { in hypotf()
76 w = sqrtf(t1 * t1 - (b * (-b) - t2 * (a + t1))); in hypotf()
80 y2 = b - y1; in hypotf()
83 w = sqrtf(t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b))); in hypotf()