mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
30891f35fa
We stopped adding "Contributed by" or similar lines in sources in 2012 in favour of git logs and keeping the Contributors section of the glibc manual up to date. Removing these lines makes the license header a bit more consistent across files and also removes the possibility of error in attribution when license blocks or files are copied across since the contributed-by lines don't actually reflect reality in those cases. Move all "Contributed by" and similar lines (Written by, Test by, etc.) into a new file CONTRIBUTED-BY to retain record of these contributions. These contributors are also mentioned in manual/contrib.texi, so we just maintain this additional record as a courtesy to the earlier developers. The following scripts were used to filter a list of files to edit in place and to clean up the CONTRIBUTED-BY file respectively. These were not added to the glibc sources because they're not expected to be of any use in future given that this is a one time task: https://gist.github.com/siddhesh/b5ecac94eabfd72ed2916d6d8157e7dc https://gist.github.com/siddhesh/15ea1f5e435ace9774f485030695ee02 Reviewed-by: Carlos O'Donell <carlos@redhat.com>
77 lines
1.8 KiB
C
77 lines
1.8 KiB
C
/* s_tanf.c -- float version of s_tan.c.
|
|
*/
|
|
|
|
/*
|
|
* ====================================================
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
*
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
* Permission to use, copy, modify, and distribute this
|
|
* software is freely granted, provided that this notice
|
|
* is preserved.
|
|
* ====================================================
|
|
*/
|
|
|
|
#if defined(LIBM_SCCS) && !defined(lint)
|
|
static char rcsid[] = "$NetBSD: s_tanf.c,v 1.4 1995/05/10 20:48:20 jtc Exp $";
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
#include <math.h>
|
|
#include <math_private.h>
|
|
#include <libm-alias-float.h>
|
|
#include "s_sincosf.h"
|
|
|
|
/* Reduce range of X to a multiple of PI/2. The modulo result is between
|
|
-PI/4 and PI/4 and returned as a high part y[0] and a low part y[1].
|
|
The low bit in the return value indicates the first or 2nd half of tanf. */
|
|
static inline int32_t
|
|
rem_pio2f (float x, float *y)
|
|
{
|
|
double dx = x;
|
|
int n;
|
|
const sincos_t *p = &__sincosf_table[0];
|
|
|
|
if (__glibc_likely (abstop12 (x) < abstop12 (120.0f)))
|
|
dx = reduce_fast (dx, p, &n);
|
|
else
|
|
{
|
|
uint32_t xi = asuint (x);
|
|
int sign = xi >> 31;
|
|
|
|
dx = reduce_large (xi, &n);
|
|
dx = sign ? -dx : dx;
|
|
}
|
|
|
|
y[0] = dx;
|
|
y[1] = dx - y[0];
|
|
return n;
|
|
}
|
|
|
|
float __tanf(float x)
|
|
{
|
|
float y[2],z=0.0;
|
|
int32_t n, ix;
|
|
|
|
GET_FLOAT_WORD(ix,x);
|
|
|
|
/* |x| ~< pi/4 */
|
|
ix &= 0x7fffffff;
|
|
if(ix <= 0x3f490fda) return __kernel_tanf(x,z,1);
|
|
|
|
/* tan(Inf or NaN) is NaN */
|
|
else if (ix>=0x7f800000) {
|
|
if (ix==0x7f800000)
|
|
__set_errno (EDOM);
|
|
return x-x; /* NaN */
|
|
}
|
|
|
|
/* argument reduction needed */
|
|
else {
|
|
n = rem_pio2f(x,y);
|
|
return __kernel_tanf(y[0],y[1],1-((n&1)<<1)); /* 1 -- n even
|
|
-1 -- n odd */
|
|
}
|
|
}
|
|
libm_alias_float (__tan, tan)
|