Searched refs:ftAbs (Results 1 – 1 of 1) sorted by relevance
172 template <typename FT> inline FT ftAbs(FT v);174 template <> inline long double ftAbs(long double v) { return fabsl(v); } in ftAbs() function175 template <> inline double ftAbs(double v) { return fabs(v); } in ftAbs() function180 template <typename FT> inline FT ftAbs(FT v) { return v >= FT{0} ? v : -v; } in ftAbs() function485 const InternalFT abs_err = ftAbs(check_value - check_shadow); in checkFT()492 const InternalFT largest = max(ftAbs(check_value), ftAbs(check_shadow)); in checkFT()501 const InternalFT largest = max(ftAbs(check_value), ftAbs(check_shadow)); in checkFT()