Searched refs:inputString (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/libc/test/src/stdlib/ |
| H A D | strtod_test.cpp | 25 void run_test(const char *inputString, const ptrdiff_t expectedStrLen, in run_test() argument 47 double result = __llvm_libc::strtod(inputString, &str_end); in run_test() 52 EXPECT_EQ(str_end - inputString, expectedStrLen); in run_test()
|
| H A D | strtold_test.cpp | 30 void run_test(const char *inputString, const ptrdiff_t expectedStrLen, in run_test() argument 33 void run_test(const char *inputString, const ptrdiff_t expectedStrLen, in run_test() 82 long double result = __llvm_libc::strtold(inputString, &str_end); in run_test() 88 EXPECT_EQ(str_end - inputString, expectedStrLen); in run_test()
|
| H A D | strtof_test.cpp | 25 void run_test(const char *inputString, const ptrdiff_t expectedStrLen, in run_test() argument 47 float result = __llvm_libc::strtof(inputString, &str_end); in run_test() 52 EXPECT_EQ(str_end - inputString, expectedStrLen); in run_test()
|