Searched refs:to_float (Results 1 – 4 of 4) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | StringExtras.h | 254 inline bool to_float(const Twine &T, N &Num, N (*StrTo)(const char *, char **)) { in to_float() function 266 inline bool to_float(const Twine &T, float &Num) { in to_float() function 267 return detail::to_float(T, Num, strtof); in to_float() 270 inline bool to_float(const Twine &T, double &Num) { in to_float() function 271 return detail::to_float(T, Num, strtod); in to_float() 274 inline bool to_float(const Twine &T, long double &Num) { in to_float() function 275 return detail::to_float(T, Num, strtold); in to_float()
|
| /freebsd-13.1/contrib/cortex-strings/scripts/ |
| H A D | plot.py | 21 def to_float(v): function 43 rows = [[to_float(y) for y in x] for x in rows]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | YAMLTraits.cpp | 1043 if (to_float(Scalar, Val)) in input() 1053 if (to_float(Scalar, Val)) in input()
|
| H A D | CommandLine.cpp | 1904 if (to_float(Arg, Value)) in parseDouble()
|