/src/lib/libm/src/ |
e_hypot.c | 34 * t1*yy1+((x-y)*(x-y)+(t1*y2+t2*y)) 36 * yy1= y with lower 32 bits chopped, y2 = y-yy1. 56 double a=x,b=y,t1,t2,yy1,y2,w; local in function:__ieee754_hypot 110 yy1 = 0; 111 SET_HIGH_WORD(yy1,hb); 112 y2 = b - yy1; 116 w = __ieee754_sqrt(t1*yy1-(w*(-w)-(t1*y2+t2*b)));
|
e_hypotf.c | 27 float a=x,b=y,t1,t2,yy1,y2,w; local in function:__ieee754_hypotf 74 SET_FLOAT_WORD(yy1,hb&0xfffff000); 75 y2 = b - yy1; 78 w = __ieee754_sqrtf(t1*yy1-(w*(-w)-(t1*y2+t2*b)));
|
e_pow.c | 103 double yy1,t1,t2,r,s,t,u,v,w; local in function:__ieee754_pow 259 /* split up y into yy1+y2 and compute (yy1+y2)*(t1+t2) */ 260 yy1 = y; 261 SET_LOW_WORD(yy1,0); 262 p_l = (y-yy1)*t1+y*t2; 263 p_h = yy1*t1;
|
e_powf.c | 62 float yy1,t1,t2,r,s,sn,t,u,v,w; local in function:__ieee754_powf 205 /* split up y into yy1+y2 and compute (yy1+y2)*(t1+t2) */ 207 SET_FLOAT_WORD(yy1,is&0xfffff000); 208 p_l = (y-yy1)*t1+y*t2; 209 p_h = yy1*t1;
|
/src/lib/libm/ld128/ |
e_powl.c | 149 long double yy1, t1, t2, r, s, t, u, v, w; local in function:powl 368 /* split up y into yy1+y2 and compute (yy1+y2)*(t1+t2) */ 369 yy1 = y; 370 o.value = yy1; 373 yy1 = o.value; 374 p_l = (y - yy1) * t1 + y * t2; 375 p_h = yy1 * t1;
|
/src/lib/libc/time/ |
localtime.c | 1168 int d, m1, yy0, yy1, yy2, dow; local in function:transtime 1206 yy1 = yy0 / 100; 1209 1 + yy2 + yy2 / 4 + yy1 / 4 - 2 * yy1) % 7;
|