Merge pull request #3936 from kumpera/monoclass_reorg2
[mono-project.git] / mono / metadata / sysmath.h
blob85d3234dfdb45f6c3adc7fe987a00a8387c78d10
1 /*
2 * math.h
4 * Author:
5 * Dan Lewis (dihlewis@yahoo.co.uk)
6 * Ludovic Henry (ludovic@xamarin.com)
8 * (C) Ximian, Inc. 2002
9 * Copyright 2015 Xamarin, Inc (https://www.xamarin.com)
10 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
13 #ifndef __METADATA_SYSMATH_H__
14 #define __METADATA_SYSMATH_H__
16 #include <config.h>
17 #include <glib.h>
19 gdouble
20 ves_icall_System_Math_Floor (gdouble x);
22 gdouble
23 ves_icall_System_Math_Round (gdouble x);
25 gdouble
26 ves_icall_System_Math_Sin (gdouble x);
28 gdouble
29 ves_icall_System_Math_Cos (gdouble x);
31 gdouble
32 ves_icall_System_Math_Tan (gdouble x);
34 gdouble
35 ves_icall_System_Math_Sinh (gdouble x);
37 gdouble
38 ves_icall_System_Math_Cosh (gdouble x);
40 gdouble
41 ves_icall_System_Math_Tanh (gdouble x);
43 gdouble
44 ves_icall_System_Math_Acos (gdouble x);
46 gdouble
47 ves_icall_System_Math_Asin (gdouble x);
49 gdouble
50 ves_icall_System_Math_Atan (gdouble x);
52 gdouble
53 ves_icall_System_Math_Atan2 (gdouble y, gdouble x);
55 gdouble
56 ves_icall_System_Math_Exp (gdouble x);
58 gdouble
59 ves_icall_System_Math_Log (gdouble x);
61 gdouble
62 ves_icall_System_Math_Log10 (gdouble x);
64 gdouble
65 ves_icall_System_Math_Pow (gdouble x, gdouble y);
67 gdouble
68 ves_icall_System_Math_Sqrt (gdouble x);
70 gdouble
71 ves_icall_System_Math_Abs_double (gdouble v);
73 gfloat
74 ves_icall_System_Math_Abs_single (gfloat v);
76 gdouble
77 ves_icall_System_Math_SplitFractionDouble (gdouble *v);
79 gdouble
80 ves_icall_System_Math_Ceiling (gdouble v);
82 #endif