Home
last modified time | relevance | path

Searched refs:inputString (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libc/test/src/stdlib/
H A Dstrtod_test.cpp25 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 Dstrtold_test.cpp30 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 Dstrtof_test.cpp25 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()