Home | History | Annotate | Download | only in fdlibm

Lines Matching refs:hfsq

37  *	Note that 2s = f - s*f = f - hfsq + s*hfsq, where hfsq = f*f/2.
41 * log(1+f) = f - (hfsq - s*(hfsq+R)). (better accuracy)
44 * = k*ln2_hi+(f-(hfsq-(s*(hfsq+R)+k*ln2_lo)))
92 double hfsq,f,s,z,R,w,t1,t2,dk;
132 hfsq=0.5*f*f;
133 if(k==0) return f-(hfsq-s*(hfsq+R)); else
134 return dk*ln2_hi-((hfsq-(s*(hfsq+R)+dk*ln2_lo))-f);