]> sourceware.org Git - glibc.git/commitdiff
Format slowexp.c
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Mon, 25 Feb 2013 10:43:35 +0000 (16:13 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Mon, 25 Feb 2013 10:43:35 +0000 (16:13 +0530)
ChangeLog
sysdeps/ieee754/dbl-64/slowexp.c

index 2ff779992f581ddf111dd061df10e7f4d1480c2c..04bb632617fa71bca4f3350beef5a9d267d5eb16 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2013-02-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
+       * sysdeps/ieee754/dbl-64/slowexp.c: Reformat in GNU coding
+       style.
+
        * sysdeps/ieee754/dbl-64/slowpow.c: Reformat in GNU coding
        style.
 
index 4899af7c07d726a7ed958c526c0f45b6338158cd..c423fc31155bc272b6f0950b9a1d3d91e1660538 100644 (file)
 # define SECTION
 #endif
 
-void __mpexp(mp_no *x, mp_no *y, int p);
+void __mpexp (mp_no *x, mp_no *y, int p);
 
 /*Converting from double precision to Multi-precision and calculating  e^x */
 double
 SECTION
-__slowexp(double x) {
-  double w,z,res,eps=3.0e-26;
+__slowexp (double x)
+{
+  double w, z, res, eps = 3.0e-26;
   int p;
-  mp_no mpx, mpy, mpz,mpw,mpeps,mpcor;
+  mp_no mpx, mpy, mpz, mpw, mpeps, mpcor;
 
-  p=6;
-  __dbl_mp(x,&mpx,p); /* Convert a double precision number  x               */
-                   /* into a multiple precision number mpx with prec. p. */
-  __mpexp(&mpx, &mpy, p); /* Multi-Precision exponential function */
-  __dbl_mp(eps,&mpeps,p);
-  __mul(&mpeps,&mpy,&mpcor,p);
-  __add(&mpy,&mpcor,&mpw,p);
-  __sub(&mpy,&mpcor,&mpz,p);
-  __mp_dbl(&mpw, &w, p);
-  __mp_dbl(&mpz, &z, p);
-  if (w == z) return w;
-  else  {                   /* if calculating is not exactly   */
-    p = 32;
-    __dbl_mp(x,&mpx,p);
-    __mpexp(&mpx, &mpy, p);
-    __mp_dbl(&mpy, &res, p);
-    return res;
-  }
+  /* Use the multiple precision __MPEXP function to compute the exponential
+     First at 144 bits and if it is not accurate enough, at 768 bits.  */
+  p = 6;
+  __dbl_mp (x, &mpx, p);
+  __mpexp (&mpx, &mpy, p);
+  __dbl_mp (eps, &mpeps, p);
+  __mul (&mpeps, &mpy, &mpcor, p);
+  __add (&mpy, &mpcor, &mpw, p);
+  __sub (&mpy, &mpcor, &mpz, p);
+  __mp_dbl (&mpw, &w, p);
+  __mp_dbl (&mpz, &z, p);
+  if (w == z)
+    return w;
+  else
+    {
+      p = 32;
+      __dbl_mp (x, &mpx, p);
+      __mpexp (&mpx, &mpy, p);
+      __mp_dbl (&mpy, &res, p);
+      return res;
+    }
 }
This page took 0.112199 seconds and 5 git commands to generate.