OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libm/] [mathfp/] [ef_scalb.c] - Diff between revs 207 and 345

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 345
/* ef_scalb.c -- float version of e_scalb.c.
/* ef_scalb.c -- float version of e_scalb.c.
 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
 */
 */
 
 
/*
/*
 * ====================================================
 * ====================================================
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 *
 *
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Permission to use, copy, modify, and distribute this
 * Permission to use, copy, modify, and distribute this
 * software is freely granted, provided that this notice
 * software is freely granted, provided that this notice
 * is preserved.
 * is preserved.
 * ====================================================
 * ====================================================
 */
 */
 
 
#include "fdlibm.h"
#include "fdlibm.h"
#include <limits.h>
#include <limits.h>
 
 
#ifdef _SCALB_INT
#ifdef _SCALB_INT
#ifdef __STDC__
#ifdef __STDC__
        float scalbf(float x, int fn)
        float scalbf(float x, int fn)
#else
#else
        float scalbf(x,fn)
        float scalbf(x,fn)
        float x; int fn;
        float x; int fn;
#endif
#endif
#else
#else
#ifdef __STDC__
#ifdef __STDC__
        float scalbf(float x, float fn)
        float scalbf(float x, float fn)
#else
#else
        float scalbf(x,fn)
        float scalbf(x,fn)
        float x, fn;
        float x, fn;
#endif
#endif
#endif
#endif
{
{
#ifdef _SCALB_INT
#ifdef _SCALB_INT
        return scalbnf(x,fn);
        return scalbnf(x,fn);
#else
#else
        if (isnanf(x)||isnanf(fn)) return x*fn;
        if (isnanf(x)||isnanf(fn)) return x*fn;
        if (!finitef(fn)) {
        if (!finitef(fn)) {
            if(fn>(float)0.0) return x*fn;
            if(fn>(float)0.0) return x*fn;
            else       return x/(-fn);
            else       return x/(-fn);
        }
        }
        if (rintf(fn)!=fn) return (fn-fn)/(fn-fn);
        if (rintf(fn)!=fn) return (fn-fn)/(fn-fn);
#if INT_MAX > 65000
#if INT_MAX > 65000
        if ( fn > (float)65000.0) return scalbnf(x, 65000);
        if ( fn > (float)65000.0) return scalbnf(x, 65000);
        if (-fn > (float)65000.0) return scalbnf(x,-65000);
        if (-fn > (float)65000.0) return scalbnf(x,-65000);
#else
#else
        if ( fn > (float)32000.0) return scalbnf(x, 32000);
        if ( fn > (float)32000.0) return scalbnf(x, 32000);
        if (-fn > (float)32000.0) return scalbnf(x,-32000);
        if (-fn > (float)32000.0) return scalbnf(x,-32000);
#endif
#endif
        return scalbnf(x,(int)fn);
        return scalbnf(x,(int)fn);
#endif
#endif
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.