Lines Matching refs:b
53 __float64 a = x, b = y, t1, t2, y1, y2, w; in hypot64() local
62 b = x; in hypot64()
68 b = y; in hypot64()
71 SET_HIGH_WORD(b, hb); /* b <- |b| */ in hypot64()
73 return a + b; in hypot64()
79 w = a + b; /* for sNaN */ in hypot64()
81 if (((ha & 0xfffff) | low) == 0 && !issignaling(b)) in hypot64()
83 GET_LOW_WORD(low, b); in hypot64()
85 w = b; in hypot64()
93 SET_HIGH_WORD(b, hb); in hypot64()
98 GET_LOW_WORD(low, b); in hypot64()
103 b *= t1; in hypot64()
111 SET_HIGH_WORD(b, hb); in hypot64()
115 w = a - b; in hypot64()
116 if (w > b) { in hypot64()
120 w = sqrt64(t1 * t1 - (b * (-b) - t2 * (a + t1))); in hypot64()
125 y2 = b - y1; in hypot64()
129 w = sqrt64(t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b))); in hypot64()