Browse Source

Hide all __kernel_x and __ieee754_

Peter S. Mazinger 19 years ago
parent
commit
e4380762b3
26 changed files with 60 additions and 60 deletions
  1. 2 2
      libm/e_acos.c
  2. 2 2
      libm/e_acosh.c
  3. 2 2
      libm/e_asin.c
  4. 2 2
      libm/e_atan2.c
  5. 2 2
      libm/e_atanh.c
  6. 2 2
      libm/e_cosh.c
  7. 2 2
      libm/e_exp.c
  8. 2 2
      libm/e_fmod.c
  9. 2 2
      libm/e_gamma_r.c
  10. 2 2
      libm/e_hypot.c
  11. 4 4
      libm/e_j0.c
  12. 4 4
      libm/e_j1.c
  13. 4 4
      libm/e_jn.c
  14. 2 2
      libm/e_lgamma_r.c
  15. 2 2
      libm/e_log.c
  16. 2 2
      libm/e_log10.c
  17. 2 2
      libm/e_pow.c
  18. 2 2
      libm/e_rem_pio2.c
  19. 2 2
      libm/e_remainder.c
  20. 4 4
      libm/e_scalb.c
  21. 2 2
      libm/e_sinh.c
  22. 2 2
      libm/e_sqrt.c
  23. 2 2
      libm/k_cos.c
  24. 2 2
      libm/k_rem_pio2.c
  25. 2 2
      libm/k_sin.c
  26. 2 2
      libm/k_tan.c

+ 2 - 2
libm/e_acos.c

@@ -62,9 +62,9 @@ qS3 = -6.88283971605453293030e-01, /* 0xBFE6066C, 0x1B8D0159 */
 qS4 =  7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */
 
 #ifdef __STDC__
-	double __ieee754_acos(double x)
+	double attribute_hidden __ieee754_acos(double x)
 #else
-	double __ieee754_acos(x)
+	double attribute_hidden __ieee754_acos(x)
 	double x;
 #endif
 {

+ 2 - 2
libm/e_acosh.c

@@ -40,9 +40,9 @@ one	= 1.0,
 ln2	= 6.93147180559945286227e-01;  /* 0x3FE62E42, 0xFEFA39EF */
 
 #ifdef __STDC__
-	double __ieee754_acosh(double x)
+	double attribute_hidden __ieee754_acosh(double x)
 #else
-	double __ieee754_acosh(x)
+	double attribute_hidden __ieee754_acosh(x)
 	double x;
 #endif
 {

+ 2 - 2
libm/e_asin.c

@@ -71,9 +71,9 @@ qS3 = -6.88283971605453293030e-01, /* 0xBFE6066C, 0x1B8D0159 */
 qS4 =  7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */
 
 #ifdef __STDC__
-	double __ieee754_asin(double x)
+	double attribute_hidden __ieee754_asin(double x)
 #else
-	double __ieee754_asin(x)
+	double attribute_hidden __ieee754_asin(x)
 	double x;
 #endif
 {

+ 2 - 2
libm/e_atan2.c

@@ -57,9 +57,9 @@ pi      = 3.1415926535897931160E+00, /* 0x400921FB, 0x54442D18 */
 pi_lo   = 1.2246467991473531772E-16; /* 0x3CA1A626, 0x33145C07 */
 
 #ifdef __STDC__
-	double __ieee754_atan2(double y, double x)
+	double attribute_hidden __ieee754_atan2(double y, double x)
 #else
-	double __ieee754_atan2(y,x)
+	double attribute_hidden __ieee754_atan2(y,x)
 	double  y,x;
 #endif
 {

+ 2 - 2
libm/e_atanh.c

@@ -48,9 +48,9 @@ static double zero = 0.0;
 #endif
 
 #ifdef __STDC__
-	double __ieee754_atanh(double x)
+	double attribute_hidden __ieee754_atanh(double x)
 #else
-	double __ieee754_atanh(x)
+	double attribute_hidden __ieee754_atanh(x)
 	double x;
 #endif
 {

+ 2 - 2
libm/e_cosh.c

@@ -45,9 +45,9 @@ static double one = 1.0, half=0.5, huge = 1.0e300;
 #endif
 
 #ifdef __STDC__
-	double __ieee754_cosh(double x)
+	double attribute_hidden __ieee754_cosh(double x)
 #else
-	double __ieee754_cosh(x)
+	double attribute_hidden __ieee754_cosh(x)
 	double x;
 #endif
 {

+ 2 - 2
libm/e_exp.c

@@ -104,9 +104,9 @@ P5   =  4.13813679705723846039e-08; /* 0x3E663769, 0x72BEA4D0 */
 
 
 #ifdef __STDC__
-	double __ieee754_exp(double x)	/* default IEEE double exp */
+	double attribute_hidden __ieee754_exp(double x)	/* default IEEE double exp */
 #else
-	double __ieee754_exp(x)	/* default IEEE double exp */
+	double attribute_hidden __ieee754_exp(x)	/* default IEEE double exp */
 	double x;
 #endif
 {

+ 2 - 2
libm/e_fmod.c

@@ -30,9 +30,9 @@ static double one = 1.0, Zero[] = {0.0, -0.0,};
 #endif
 
 #ifdef __STDC__
-	double __ieee754_fmod(double x, double y)
+	double attribute_hidden __ieee754_fmod(double x, double y)
 #else
-	double __ieee754_fmod(x,y)
+	double attribute_hidden __ieee754_fmod(x,y)
 	double x,y ;
 #endif
 {

+ 2 - 2
libm/e_gamma_r.c

@@ -23,9 +23,9 @@
 
 #ifdef __STDC__
 	//__private_extern__
-	double __ieee754_gamma_r(double x, int *signgamp)
+	double attribute_hidden __ieee754_gamma_r(double x, int *signgamp)
 #else
-	double __ieee754_gamma_r(x,signgamp)
+	double attribute_hidden __ieee754_gamma_r(x,signgamp)
 	double x; int *signgamp;
 #endif
 {

+ 2 - 2
libm/e_hypot.c

@@ -50,9 +50,9 @@ static char rcsid[] = "$NetBSD: e_hypot.c,v 1.9 1995/05/12 04:57:27 jtc Exp $";
 #include "math_private.h"
 
 #ifdef __STDC__
-	double __ieee754_hypot(double x, double y)
+	double attribute_hidden __ieee754_hypot(double x, double y)
 #else
-	double __ieee754_hypot(x,y)
+	double attribute_hidden __ieee754_hypot(x,y)
 	double x, y;
 #endif
 {

+ 4 - 4
libm/e_j0.c

@@ -94,9 +94,9 @@ static double zero = 0.0;
 #endif
 
 #ifdef __STDC__
-	double __ieee754_j0(double x)
+	double attribute_hidden __ieee754_j0(double x)
 #else
-	double __ieee754_j0(x)
+	double attribute_hidden __ieee754_j0(x)
 	double x;
 #endif
 {
@@ -163,9 +163,9 @@ v03  =  2.59150851840457805467e-07, /* 0x3E91642D, 0x7FF202FD */
 v04  =  4.41110311332675467403e-10; /* 0x3DFE5018, 0x3BD6D9EF */
 
 #ifdef __STDC__
-	double __ieee754_y0(double x)
+	double attribute_hidden __ieee754_y0(double x)
 #else
-	double __ieee754_y0(x)
+	double attribute_hidden __ieee754_y0(x)
 	double x;
 #endif
 {

+ 4 - 4
libm/e_j1.c

@@ -95,9 +95,9 @@ static double zero    = 0.0;
 #endif
 
 #ifdef __STDC__
-	double __ieee754_j1(double x)
+	double attribute_hidden __ieee754_j1(double x)
 #else
-	double __ieee754_j1(x)
+	double attribute_hidden __ieee754_j1(x)
 	double x;
 #endif
 {
@@ -164,9 +164,9 @@ static double V0[5] = {
 };
 
 #ifdef __STDC__
-	double __ieee754_y1(double x)
+	double attribute_hidden __ieee754_y1(double x)
 #else
-	double __ieee754_y1(x)
+	double attribute_hidden __ieee754_y1(x)
 	double x;
 #endif
 {

+ 4 - 4
libm/e_jn.c

@@ -59,9 +59,9 @@ static double zero  =  0.00000000000000000000e+00;
 #endif
 
 #ifdef __STDC__
-	double __ieee754_jn(int n, double x)
+	double attribute_hidden __ieee754_jn(int n, double x)
 #else
-	double __ieee754_jn(n,x)
+	double attribute_hidden __ieee754_jn(n,x)
 	int n; double x;
 #endif
 {
@@ -219,9 +219,9 @@ static double zero  =  0.00000000000000000000e+00;
 }
 
 #ifdef __STDC__
-	double __ieee754_yn(int n, double x)
+	double attribute_hidden __ieee754_yn(int n, double x)
 #else
-	double __ieee754_yn(n,x)
+	double attribute_hidden __ieee754_yn(n,x)
 	int n; double x;
 #endif
 {

+ 2 - 2
libm/e_lgamma_r.c

@@ -217,9 +217,9 @@ __inline__
 
 
 #ifdef __STDC__
-	double __ieee754_lgamma_r(double x, int *signgamp)
+	double attribute_hidden __ieee754_lgamma_r(double x, int *signgamp)
 #else
-	double __ieee754_lgamma_r(x,signgamp)
+	double attribute_hidden __ieee754_lgamma_r(x,signgamp)
 	double x; int *signgamp;
 #endif
 {

+ 2 - 2
libm/e_log.c

@@ -91,9 +91,9 @@ static double zero   =  0.0;
 #endif
 
 #ifdef __STDC__
-	double __ieee754_log(double x)
+	double attribute_hidden __ieee754_log(double x)
 #else
-	double __ieee754_log(x)
+	double attribute_hidden __ieee754_log(x)
 	double x;
 #endif
 {

+ 2 - 2
libm/e_log10.c

@@ -67,9 +67,9 @@ static double zero   =  0.0;
 #endif
 
 #ifdef __STDC__
-	double __ieee754_log10(double x)
+	double attribute_hidden __ieee754_log10(double x)
 #else
-	double __ieee754_log10(x)
+	double attribute_hidden __ieee754_log10(x)
 	double x;
 #endif
 {

+ 2 - 2
libm/e_pow.c

@@ -100,9 +100,9 @@ ivln2_h  =  1.44269502162933349609e+00, /* 0x3FF71547, 0x60000000 =24b 1/ln2*/
 ivln2_l  =  1.92596299112661746887e-08; /* 0x3E54AE0B, 0xF85DDF44 =1/ln2 tail*/
 
 #ifdef __STDC__
-	double __ieee754_pow(double x, double y)
+	double attribute_hidden __ieee754_pow(double x, double y)
 #else
-	double __ieee754_pow(x,y)
+	double attribute_hidden __ieee754_pow(x,y)
 	double x, y;
 #endif
 {

+ 2 - 2
libm/e_rem_pio2.c

@@ -84,9 +84,9 @@ pio2_3  =  2.02226624871116645580e-21, /* 0x3BA3198A, 0x2E000000 */
 pio2_3t =  8.47842766036889956997e-32; /* 0x397B839A, 0x252049C1 */
 
 #ifdef __STDC__
-	int32_t __ieee754_rem_pio2(double x, double *y)
+	int32_t attribute_hidden __ieee754_rem_pio2(double x, double *y)
 #else
-	int32_t __ieee754_rem_pio2(x,y)
+	int32_t attribute_hidden __ieee754_rem_pio2(x,y)
 	double x,y[];
 #endif
 {

+ 2 - 2
libm/e_remainder.c

@@ -34,9 +34,9 @@ static double zero = 0.0;
 
 
 #ifdef __STDC__
-	double __ieee754_remainder(double x, double p)
+	double attribute_hidden __ieee754_remainder(double x, double p)
 #else
-	double __ieee754_remainder(x,p)
+	double attribute_hidden __ieee754_remainder(x,p)
 	double x,p;
 #endif
 {

+ 4 - 4
libm/e_scalb.c

@@ -25,16 +25,16 @@ static char rcsid[] = "$NetBSD: e_scalb.c,v 1.6 1995/05/10 20:46:09 jtc Exp $";
 
 #ifdef _SCALB_INT
 #ifdef __STDC__
-	double __ieee754_scalb(double x, int fn)
+	double attribute_hidden __ieee754_scalb(double x, int fn)
 #else
-	double __ieee754_scalb(x,fn)
+	double attribute_hidden __ieee754_scalb(x,fn)
 	double x; int fn;
 #endif
 #else
 #ifdef __STDC__
-	double __ieee754_scalb(double x, double fn)
+	double attribute_hidden __ieee754_scalb(double x, double fn)
 #else
-	double __ieee754_scalb(x,fn)
+	double attribute_hidden __ieee754_scalb(x,fn)
 	double x, fn;
 #endif
 #endif

+ 2 - 2
libm/e_sinh.c

@@ -42,9 +42,9 @@ static double one = 1.0, shuge = 1.0e307;
 #endif
 
 #ifdef __STDC__
-	double __ieee754_sinh(double x)
+	double attribute_hidden __ieee754_sinh(double x)
 #else
-	double __ieee754_sinh(x)
+	double attribute_hidden __ieee754_sinh(x)
 	double x;
 #endif
 {

+ 2 - 2
libm/e_sqrt.c

@@ -94,9 +94,9 @@ static	double	one	= 1.0, tiny=1.0e-300;
 #endif
 
 #ifdef __STDC__
-	double __ieee754_sqrt(double x)
+	double attribute_hidden __ieee754_sqrt(double x)
 #else
-	double __ieee754_sqrt(x)
+	double attribute_hidden __ieee754_sqrt(x)
 	double x;
 #endif
 {

+ 2 - 2
libm/k_cos.c

@@ -66,9 +66,9 @@ C5  =  2.08757232129817482790e-09, /* 0x3E21EE9E, 0xBDB4B1C4 */
 C6  = -1.13596475577881948265e-11; /* 0xBDA8FAE9, 0xBE8838D4 */
 
 #ifdef __STDC__
-	double __kernel_cos(double x, double y)
+	double attribute_hidden __kernel_cos(double x, double y)
 #else
-	double __kernel_cos(x, y)
+	double attribute_hidden __kernel_cos(x, y)
 	double x,y;
 #endif
 {

+ 2 - 2
libm/k_rem_pio2.c

@@ -165,9 +165,9 @@ two24   =  1.67772160000000000000e+07, /* 0x41700000, 0x00000000 */
 twon24  =  5.96046447753906250000e-08; /* 0x3E700000, 0x00000000 */
 
 #ifdef __STDC__
-	int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int32_t *ipio2)
+	int attribute_hidden __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int32_t *ipio2)
 #else
-	int __kernel_rem_pio2(x,y,e0,nx,prec,ipio2)
+	int attribute_hidden __kernel_rem_pio2(x,y,e0,nx,prec,ipio2)
 	double x[], y[]; int e0,nx,prec; int32_t ipio2[];
 #endif
 {

+ 2 - 2
libm/k_sin.c

@@ -59,9 +59,9 @@ S5  = -2.50507602534068634195e-08, /* 0xBE5AE5E6, 0x8A2B9CEB */
 S6  =  1.58969099521155010221e-10; /* 0x3DE5D93A, 0x5ACFD57C */
 
 #ifdef __STDC__
-	double __kernel_sin(double x, double y, int iy)
+	double attribute_hidden __kernel_sin(double x, double y, int iy)
 #else
-	double __kernel_sin(x, y, iy)
+	double attribute_hidden __kernel_sin(x, y, iy)
 	double x,y; int iy;		/* iy=0 if y is zero */
 #endif
 {

+ 2 - 2
libm/k_tan.c

@@ -75,9 +75,9 @@ T[] =  {
 };
 
 #ifdef __STDC__
-	double __kernel_tan(double x, double y, int iy)
+	double attribute_hidden __kernel_tan(double x, double y, int iy)
 #else
-	double __kernel_tan(x, y, iy)
+	double attribute_hidden __kernel_tan(x, y, iy)
 	double x,y; int iy;
 #endif
 {