summaryrefslogtreecommitdiff
path: root/src/classlibnative/inc/floatsingle.h
diff options
context:
space:
mode:
authorJiyoung Yun <jy910.yun@samsung.com>2017-04-13 14:17:19 +0900
committerJiyoung Yun <jy910.yun@samsung.com>2017-04-13 14:17:19 +0900
commita56e30c8d33048216567753d9d3fefc2152af8ac (patch)
tree7e5d979695fc4a431740982eb1cfecc2898b23a5 /src/classlibnative/inc/floatsingle.h
parent4b11dc566a5bbfa1378d6266525c281b028abcc8 (diff)
downloadcoreclr-a56e30c8d33048216567753d9d3fefc2152af8ac.tar.gz
coreclr-a56e30c8d33048216567753d9d3fefc2152af8ac.tar.bz2
coreclr-a56e30c8d33048216567753d9d3fefc2152af8ac.zip
Imported Upstream version 2.0.0.11353upstream/2.0.0.11353
Diffstat (limited to 'src/classlibnative/inc/floatsingle.h')
-rw-r--r--src/classlibnative/inc/floatsingle.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/classlibnative/inc/floatsingle.h b/src/classlibnative/inc/floatsingle.h
index f8a1dda0fd..8296e2d37a 100644
--- a/src/classlibnative/inc/floatsingle.h
+++ b/src/classlibnative/inc/floatsingle.h
@@ -10,26 +10,26 @@
class COMSingle {
public:
- FCDECL1(static float, Abs, float x);
- FCDECL1(static float, Acos, float x);
- FCDECL1(static float, Asin, float x);
- FCDECL1(static float, Atan, float x);
- FCDECL2(static float, Atan2, float y, float x);
- FCDECL1(static float, Ceil, float x);
- FCDECL1(static float, Cos, float x);
- FCDECL1(static float, Cosh, float x);
- FCDECL1(static float, Exp, float x);
- FCDECL1(static float, Floor, float x);
- FCDECL1(static float, Log, float x);
- FCDECL1(static float, Log10, float x);
+ FCDECL1_V(static float, Abs, float x);
+ FCDECL1_V(static float, Acos, float x);
+ FCDECL1_V(static float, Asin, float x);
+ FCDECL1_V(static float, Atan, float x);
+ FCDECL2_VV(static float, Atan2, float y, float x);
+ FCDECL1_V(static float, Ceil, float x);
+ FCDECL1_V(static float, Cos, float x);
+ FCDECL1_V(static float, Cosh, float x);
+ FCDECL1_V(static float, Exp, float x);
+ FCDECL1_V(static float, Floor, float x);
+ FCDECL1_V(static float, Log, float x);
+ FCDECL1_V(static float, Log10, float x);
FCDECL1(static float, ModF, float* iptr);
- FCDECL2(static float, Pow, float x, float y);
- FCDECL1(static float, Round, float x);
- FCDECL1(static float, Sin, float x);
- FCDECL1(static float, Sinh, float x);
- FCDECL1(static float, Sqrt, float x);
- FCDECL1(static float, Tan, float x);
- FCDECL1(static float, Tanh, float x);
+ FCDECL2_VV(static float, Pow, float x, float y);
+ FCDECL1_V(static float, Round, float x);
+ FCDECL1_V(static float, Sin, float x);
+ FCDECL1_V(static float, Sinh, float x);
+ FCDECL1_V(static float, Sqrt, float x);
+ FCDECL1_V(static float, Tan, float x);
+ FCDECL1_V(static float, Tanh, float x);
};
#endif // _FLOATSINGLE_H_