fast_float_math_hack.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:1k
源码类别:

Windows CE

开发平台:

C/C++

  1. #   ifdef __ICL /* only Intel C compiler has fmath ??? */
  2.     #include <mathf.h>
  3. /* Nearest integer, absolute value, etc. */
  4.     #define ceil ceilf
  5.     #define fabs fabsf
  6.     #define floor floorf
  7.     #define fmod fmodf
  8.     #define rint rintf
  9.     #define hypot hypotf
  10. /* Power functions */
  11.     #define pow powf
  12.     #define sqrt sqrtf
  13. /* Exponential and logarithmic functions */
  14.     #define exp expf
  15.     #define log logf
  16.     #define log10 log10f
  17. /* Trigonometric functions */
  18.     #define acos acosf
  19.     #define asin asinf
  20.     #define atan atanf
  21.     #define cos cosf
  22.     #define sin sinf
  23.     #define tan tanf
  24. /* Hyperbolic functions */
  25.     #define cosh coshf
  26.     #define sinh sinhf
  27.     #define tanh tanhf
  28. #   endif