Searched refs:__tg_pow (Results 1 – 1 of 1) sorted by relevance
/external/clang/lib/Headers/ |
D | tgmath.h | 473 __tg_pow(float __x, float __y) {return powf(__x, __y);} in __tg_pow() function 477 __tg_pow(double __x, double __y) {return pow(__x, __y);} in __tg_pow() function 481 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} in __tg_pow() function 485 __tg_pow(float _Complex __x, float _Complex __y) {return cpowf(__x, __y);} in __tg_pow() function 489 __tg_pow(double _Complex __x, double _Complex __y) {return cpow(__x, __y);} in __tg_pow() function 493 __tg_pow(long double _Complex __x, long double _Complex __y) in __tg_pow() function 497 #define pow(__x, __y) __tg_pow(__tg_promote2((__x), (__y))(__x), \
|