| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| StringExtras.h | 253 inline bool to_float(const Twine &T, N &Num, N (*StrTo)(const char *, char **)) { function in namespace:llvm::detail 265 inline bool to_float(const Twine &T, float &Num) { function in namespace:llvm 266 return detail::to_float(T, Num, strtof); 269 inline bool to_float(const Twine &T, double &Num) { function in namespace:llvm 270 return detail::to_float(T, Num, strtod); 273 inline bool to_float(const Twine &T, long double &Num) { function in namespace:llvm 274 return detail::to_float(T, Num, strtold);
|
| /src/tests/usr.bin/xlint/lint1/ |
| msg_259.c | 245 to_float(double dbl) function
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ |
| floating_from_chars.cc | 203 to_float<floating_type_float16_t>(bool negative, adjusted_mantissa am, function in namespace:__anon2276::fast_float 215 to_float<floating_type_bfloat16_t>(bool negative, adjusted_mantissa am, function in namespace:__anon2276::fast_float 325 // Transform the {,b}float16_t to float32_t before to_float. 348 to_float(pns.negative, am, *value.x);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/fast_float/ |
| fast_float.h | 490 fastfloat_really_inline void to_float(bool negative, adjusted_mantissa am, T &value) { function in struct:fast_float::span 2775 to_float(false, am_b, b); 3029 to_float(pns.negative, am, value);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/fast_float/ |
| fast_float.h | 522 fastfloat_really_inline void to_float(bool negative, adjusted_mantissa am, T &value) { function in struct:fast_float::span 2783 to_float(false, am_b, b); 3037 to_float(pns.negative, am, value);
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| CommandLine.cpp | 1902 if (to_float(Arg, Value))
|