Home | History | Annotate | Download | only in include

Lines Matching refs:_X

138   double __cdecl sin(double _X);
139 double __cdecl cos(double _X);
140 double __cdecl tan(double _X);
141 double __cdecl sinh(double _X);
142 double __cdecl cosh(double _X);
143 double __cdecl tanh(double _X);
144 double __cdecl asin(double _X);
145 double __cdecl acos(double _X);
146 double __cdecl atan(double _X);
147 double __cdecl atan2(double _Y,double _X);
148 double __cdecl exp(double _X);
149 double __cdecl log(double _X);
150 double __cdecl log10(double _X);
151 double __cdecl pow(double _X,double _Y);
152 double __cdecl sqrt(double _X);
153 double __cdecl ceil(double _X);
154 double __cdecl floor(double _X);
159 extern double __cdecl fabs (double _X);
194 double __cdecl ldexp(double _X,int _Y);
195 double __cdecl frexp(double _X,int *_Y);
196 double __cdecl modf(double _X,double *_Y);
197 double __cdecl fmod(double _X,double _Y);
205 int __cdecl abs(int _X);
206 long __cdecl labs(long _X);
228 double __cdecl _hypot(double _X,double _Y);
229 _CRTIMP double __cdecl _j0(double _X);
230 _CRTIMP double __cdecl _j1(double _X);
231 _CRTIMP double __cdecl _jn(int _X,double _Y);
232 _CRTIMP double __cdecl _y0(double _X);
233 _CRTIMP double __cdecl _y1(double _X);
234 _CRTIMP double __cdecl _yn(int _X,double _Y);
248 _CRTIMP double __cdecl _chgsign (double _X);
430 __CRT_INLINE int __cdecl __isnan (double _x)
436 hlp.x = _x;
445 "fstsw %%ax": "=a" (sw) : "t" (_x));
451 __CRT_INLINE int __cdecl __isnanf (float _x)
457 hlp.x = _x;
464 "fstsw %%ax": "=a" (sw) : "t" (_x));
470 __CRT_INLINE int __cdecl __isnanl (long double _x)
474 "fstsw %%ax": "=a" (sw) : "t" (_x));
529 extern float __cdecl sinf(float _X);
532 extern float __cdecl cosf(float _X);
535 extern float __cdecl tanf(float _X);
537 extern float __cdecl asinf(float _X);
550 extern float __cdecl sinhf(float _X);
552 __CRT_INLINE float sinhf(float _X) { return ((float)sinh((double)_X)); }
556 extern float __cdecl coshf(float _X);
558 __CRT_INLINE float coshf(float _X) { return ((float)cosh((double)_X)); }
562 extern float __cdecl tanhf(float _X);
564 __CRT_INLINE float tanhf(float _X) { return ((float)tanh((double)_X)); }
586 extern float __cdecl expf(float _X);
588 __CRT_INLINE float expf(float _X) { return ((float)exp((double)_X)); }
604 extern float frexpf(float _X,int *_Y);
606 __CRT_INLINE float frexpf(float _X,int *_Y) { return ((float)frexp((double)_X,_Y)); }
618 extern float __cdecl ldexpf(float _X,int _Y);
736 extern float __cdecl powf(float _X,float _Y);
738 __CRT_INLINE float powf(float _X,float _Y) { return ((float)pow((double)_X,(double)_Y)); }
1021 _CRTIMP float __cdecl _hypotf(float _X,float _Y);
1026 _CRTIMP float __cdecl _chgsignf (float _X);
1027 _CRTIMP float __cdecl _logbf(float _X);
1028 _CRTIMP float __cdecl _nextafterf(float _X,float _Y);
1029 _CRTIMP int __cdecl _finitef(float _X);
1030 _CRTIMP int __cdecl _isnanf(float _X);
1031 _CRTIMP int __cdecl _fpclassf(float _X);