• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/arm-none-eabi/include/machine/
1#ifdef __sysvnecv70_target
2double EXFUN(fast_sin,(double));
3double EXFUN(fast_cos,(double));
4double EXFUN(fast_tan,(double));
5
6double EXFUN(fast_asin,(double));
7double EXFUN(fast_acos,(double));
8double EXFUN(fast_atan,(double));
9
10double EXFUN(fast_sinh,(double));
11double EXFUN(fast_cosh,(double));
12double EXFUN(fast_tanh,(double));
13
14double EXFUN(fast_asinh,(double));
15double EXFUN(fast_acosh,(double));
16double EXFUN(fast_atanh,(double));
17
18double EXFUN(fast_abs,(double));
19double EXFUN(fast_sqrt,(double));
20double EXFUN(fast_exp2,(double));
21double EXFUN(fast_exp10,(double));
22double EXFUN(fast_expe,(double));
23double EXFUN(fast_log10,(double));
24double EXFUN(fast_log2,(double));
25double EXFUN(fast_loge,(double));
26
27
28#define	sin(x)		fast_sin(x)
29#define	cos(x)		fast_cos(x)
30#define	tan(x)		fast_tan(x)
31#define	asin(x)		fast_asin(x)
32#define	acos(x)		fast_acos(x)
33#define	atan(x)		fast_atan(x)
34#define	sinh(x)		fast_sinh(x)
35#define	cosh(x)		fast_cosh(x)
36#define	tanh(x)		fast_tanh(x)
37#define	asinh(x)	fast_asinh(x)
38#define	acosh(x)	fast_acosh(x)
39#define	atanh(x)	fast_atanh(x)
40#define	abs(x)		fast_abs(x)
41#define	sqrt(x)		fast_sqrt(x)
42#define	exp2(x)		fast_exp2(x)
43#define	exp10(x)	fast_exp10(x)
44#define	expe(x)		fast_expe(x)
45#define	log10(x)	fast_log10(x)
46#define	log2(x)		fast_log2(x)
47#define	loge(x)		fast_loge(x)
48
49#ifdef _HAVE_STDC
50/* These functions are in assembler, they really do take floats. This
51   can only be used with a real ANSI compiler */
52
53float EXFUN(fast_sinf,(float));
54float EXFUN(fast_cosf,(float));
55float EXFUN(fast_tanf,(float));
56
57float EXFUN(fast_asinf,(float));
58float EXFUN(fast_acosf,(float));
59float EXFUN(fast_atanf,(float));
60
61float EXFUN(fast_sinhf,(float));
62float EXFUN(fast_coshf,(float));
63float EXFUN(fast_tanhf,(float));
64
65float EXFUN(fast_asinhf,(float));
66float EXFUN(fast_acoshf,(float));
67float EXFUN(fast_atanhf,(float));
68
69float EXFUN(fast_absf,(float));
70float EXFUN(fast_sqrtf,(float));
71float EXFUN(fast_exp2f,(float));
72float EXFUN(fast_exp10f,(float));
73float EXFUN(fast_expef,(float));
74float EXFUN(fast_log10f,(float));
75float EXFUN(fast_log2f,(float));
76float EXFUN(fast_logef,(float));
77#define	sinf(x)		fast_sinf(x)
78#define	cosf(x)		fast_cosf(x)
79#define	tanf(x)		fast_tanf(x)
80#define	asinf(x)	fast_asinf(x)
81#define	acosf(x)	fast_acosf(x)
82#define	atanf(x)	fast_atanf(x)
83#define	sinhf(x)	fast_sinhf(x)
84#define	coshf(x)	fast_coshf(x)
85#define	tanhf(x)	fast_tanhf(x)
86#define	asinhf(x)	fast_asinhf(x)
87#define	acoshf(x)	fast_acoshf(x)
88#define	atanhf(x)	fast_atanhf(x)
89#define	absf(x)		fast_absf(x)
90#define	sqrtf(x)	fast_sqrtf(x)
91#define	exp2f(x)	fast_exp2f(x)
92#define	exp10f(x)	fast_exp10f(x)
93#define	expef(x)	fast_expef(x)
94#define	log10f(x)	fast_log10f(x)
95#define	log2f(x)	fast_log2f(x)
96#define	logef(x)	fast_logef(x)
97#endif
98/* Override the functions defined in math.h */
99#endif /* __sysvnecv70_target */
100
101