Home
last modified time | relevance | path

Searched refs:to_float (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h254 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 Dplot.py21 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 DYAMLTraits.cpp1043 if (to_float(Scalar, Val)) in input()
1053 if (to_float(Scalar, Val)) in input()
H A DCommandLine.cpp1904 if (to_float(Arg, Value)) in parseDouble()