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__
20 ves_icall_System_Math_Floor (gdouble x
);
23 ves_icall_System_Math_Round (gdouble x
);
26 ves_icall_System_Math_Sin (gdouble x
);
29 ves_icall_System_Math_Cos (gdouble x
);
32 ves_icall_System_Math_Tan (gdouble x
);
35 ves_icall_System_Math_Sinh (gdouble x
);
38 ves_icall_System_Math_Cosh (gdouble x
);
41 ves_icall_System_Math_Tanh (gdouble x
);
44 ves_icall_System_Math_Acos (gdouble x
);
47 ves_icall_System_Math_Asin (gdouble x
);
50 ves_icall_System_Math_Atan (gdouble x
);
53 ves_icall_System_Math_Atan2 (gdouble y
, gdouble x
);
56 ves_icall_System_Math_Exp (gdouble x
);
59 ves_icall_System_Math_Log (gdouble x
);
62 ves_icall_System_Math_Log10 (gdouble x
);
65 ves_icall_System_Math_Pow (gdouble x
, gdouble y
);
68 ves_icall_System_Math_Sqrt (gdouble x
);
71 ves_icall_System_Math_Abs_double (gdouble v
);
74 ves_icall_System_Math_Abs_single (gfloat v
);
77 ves_icall_System_Math_SplitFractionDouble (gdouble
*v
);
80 ves_icall_System_Math_Ceiling (gdouble v
);