2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
/* @(#)z_powf.c 1.0 98/08/13 */
|
|
|
|
#include <float.h>
|
|
|
|
#include "fdlibm.h"
|
|
|
|
#include "zmath.h"
|
|
|
|
|
|
|
|
float powf (float x, float y)
|
|
|
|
{
|
2002-06-28 23:32:45 +08:00
|
|
|
float d, k, t, r = 1.0;
|
|
|
|
int n, sign, exponent_is_even_int = 0;
|
2000-02-18 03:39:52 +08:00
|
|
|
__int32_t px;
|
|
|
|
|
|
|
|
GET_FLOAT_WORD (px, x);
|
|
|
|
|
|
|
|
k = modff (y, &d);
|
2002-06-28 04:41:49 +08:00
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
if (k == 0.0)
|
|
|
|
{
|
2002-06-28 04:41:49 +08:00
|
|
|
/* Exponent y is an integer. */
|
2000-02-18 03:39:52 +08:00
|
|
|
if (modff (ldexpf (y, -1), &t))
|
2002-06-28 04:41:49 +08:00
|
|
|
{
|
|
|
|
/* y is odd. */
|
|
|
|
exponent_is_even_int = 0;
|
|
|
|
}
|
2000-02-18 03:39:52 +08:00
|
|
|
else
|
2002-06-28 04:41:49 +08:00
|
|
|
{
|
|
|
|
/* y is even. */
|
|
|
|
exponent_is_even_int = 1;
|
|
|
|
}
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
|
|
|
|
2005-09-02 01:53:02 +08:00
|
|
|
if (x == 0.0)
|
2002-06-28 04:41:49 +08:00
|
|
|
{
|
2005-09-02 01:53:02 +08:00
|
|
|
if (y <= 0.0)
|
|
|
|
errno = EDOM;
|
2002-06-28 04:41:49 +08:00
|
|
|
}
|
2000-02-18 03:39:52 +08:00
|
|
|
else if ((t = y * log (fabsf (x))) >= BIGX)
|
|
|
|
{
|
|
|
|
errno = ERANGE;
|
|
|
|
if (px & 0x80000000)
|
|
|
|
{
|
2002-06-28 04:41:49 +08:00
|
|
|
/* x is negative. */
|
|
|
|
if (k)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2002-06-28 04:41:49 +08:00
|
|
|
/* y is not an integer. */
|
2000-02-18 03:39:52 +08:00
|
|
|
errno = EDOM;
|
|
|
|
x = 0.0;
|
|
|
|
}
|
2002-06-28 04:41:49 +08:00
|
|
|
else if (exponent_is_even_int)
|
|
|
|
x = z_infinity_f.f;
|
2000-02-18 03:39:52 +08:00
|
|
|
else
|
2002-06-28 04:41:49 +08:00
|
|
|
x = -z_infinity_f.f;
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
2002-06-28 04:41:49 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
x = z_infinity_f.f;
|
|
|
|
}
|
|
|
|
}
|
2000-02-18 03:39:52 +08:00
|
|
|
else if (t < SMALLX)
|
|
|
|
{
|
|
|
|
errno = ERANGE;
|
|
|
|
x = 0.0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-06-28 04:41:49 +08:00
|
|
|
if ( !k && fabsf (d) <= 32767 )
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
|
|
|
n = (int) d;
|
|
|
|
|
2002-06-28 04:41:49 +08:00
|
|
|
if ((sign = (n < 0)))
|
2000-02-18 03:39:52 +08:00
|
|
|
n = -n;
|
|
|
|
|
|
|
|
while ( n > 0 )
|
|
|
|
{
|
|
|
|
if ((unsigned int) n % 2)
|
|
|
|
r *= x;
|
|
|
|
x *= x;
|
|
|
|
n = (unsigned int) n / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sign)
|
|
|
|
r = 1.0 / r;
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( px & 0x80000000 )
|
|
|
|
{
|
2002-06-28 04:41:49 +08:00
|
|
|
/* x is negative. */
|
|
|
|
if (k)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2002-06-28 04:41:49 +08:00
|
|
|
/* y is not an integer. */
|
2000-02-18 03:39:52 +08:00
|
|
|
errno = EDOM;
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
x = exp (t);
|
|
|
|
|
2002-06-28 04:41:49 +08:00
|
|
|
if (!exponent_is_even_int)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2002-06-28 04:41:49 +08:00
|
|
|
if (px & 0x80000000)
|
|
|
|
{
|
|
|
|
/* y is an odd integer, and x is negative,
|
|
|
|
so the result is negative. */
|
|
|
|
GET_FLOAT_WORD (px, x);
|
|
|
|
px |= 0x80000000;
|
|
|
|
SET_FLOAT_WORD (x, px);
|
|
|
|
}
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
|
|
|
}
|
2002-06-28 04:41:49 +08:00
|
|
|
}
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _DOUBLE_IS_32BITS
|
|
|
|
|
|
|
|
double pow (double x, double y)
|
|
|
|
{
|
|
|
|
return (double) powf ((float) x, (float) y);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* defined(_DOUBLE_IS_32BITS) */
|