Blame sysdeps/ieee754/flt-32/s_cbrtf.c

Packit 6c4009
/* Compute cubic root of float value.
Packit 6c4009
   Copyright (C) 1997-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Dirk Alboth <dirka@uni-paderborn.de> and
Packit 6c4009
   Ulrich Drepper <drepper@cygnus.com>, 1997.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <math.h>
Packit 6c4009
#include <math_private.h>
Packit 6c4009
#include <libm-alias-float.h>
Packit 6c4009
Packit 6c4009
Packit 6c4009
#define CBRT2 1.2599210498948731648		/* 2^(1/3) */
Packit 6c4009
#define SQR_CBRT2 1.5874010519681994748		/* 2^(2/3) */
Packit 6c4009
Packit 6c4009
static const double factor[5] =
Packit 6c4009
{
Packit 6c4009
  1.0 / SQR_CBRT2,
Packit 6c4009
  1.0 / CBRT2,
Packit 6c4009
  1.0,
Packit 6c4009
  CBRT2,
Packit 6c4009
  SQR_CBRT2
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
Packit 6c4009
float
Packit 6c4009
__cbrtf (float x)
Packit 6c4009
{
Packit 6c4009
  float xm, ym, u, t2;
Packit 6c4009
  int xe;
Packit 6c4009
Packit 6c4009
  /* Reduce X.  XM now is an range 1.0 to 0.5.  */
Packit 6c4009
  xm = __frexpf (fabsf (x), &xe;;
Packit 6c4009
Packit 6c4009
  /* If X is not finite or is null return it (with raising exceptions
Packit 6c4009
     if necessary.
Packit 6c4009
     Note: *Our* version of `frexp' sets XE to zero if the argument is
Packit 6c4009
     Inf or NaN.  This is not portable but faster.  */
Packit 6c4009
  if (xe == 0 && fpclassify (x) <= FP_ZERO)
Packit 6c4009
    return x + x;
Packit 6c4009
Packit 6c4009
  u = (0.492659620528969547 + (0.697570460207922770
Packit 6c4009
			       - 0.191502161678719066 * xm) * xm);
Packit 6c4009
Packit 6c4009
  t2 = u * u * u;
Packit 6c4009
Packit 6c4009
  ym = u * (t2 + 2.0 * xm) / (2.0 * t2 + xm) * factor[2 + xe % 3];
Packit 6c4009
Packit 6c4009
  return __ldexpf (x > 0.0 ? ym : -ym, xe / 3);
Packit 6c4009
}
Packit 6c4009
libm_alias_float (__cbrt, cbrt)