Lines Matching refs:w
51 long double a=x,b=y,t1,t2,y1,y2,w; in hypotl() local
67 w = fabsl(x+0.0L)-fabsl(y+0); in hypotl()
69 if (manh == LDBL_NBIT && manl == 0) w = a; in hypotl()
71 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b; in hypotl()
72 return w; in hypotl()
99 w = a-b; in hypotl()
100 if (w>b) { in hypotl()
105 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl()
115 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
122 return t1*w; in hypotl()
123 } else return w; in hypotl()