Lines Matching refs:pow
76 extern double pow(double, double);
87 #pragma does_not_read_global_data(exp, log, log10, pow, sqrt)
92 #pragma does_not_write_global_data(exp, log, log10, pow, sqrt)
97 #pragma no_side_effect(exp, log, log10, pow, sqrt)
154 inline double pow(double __X, int __Y) { in pow() function
155 return (pow(__X, (double)(__Y))); in pow()
175 inline float pow(float __X, float __Y) { return __powf(__X, __Y); } in pow() function
177 inline float pow(float __X, int __Y) { in pow() function
178 return (pow((double)(__X), (double)(__Y))); in pow()
222 inline long double pow(long double __X, long double __Y) { in pow() function
226 inline long double pow(long double __X, int __Y) { in pow() function