Searched refs:tab_before (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/libc/test/src/stdlib/ |
| H A D | strtol_test.cpp | 135 const char *tab_before = "\t10"; in TEST() local 137 ASSERT_EQ(__llvm_libc::strtol(tab_before, &str_end, 10), 10l); in TEST() 139 EXPECT_EQ(str_end - tab_before, ptrdiff_t(3)); in TEST()
|
| H A D | strtoull_test.cpp | 135 const char *tab_before = "\t10"; in TEST() local 137 ASSERT_EQ(__llvm_libc::strtoull(tab_before, &str_end, 10), 10ull); in TEST() 139 EXPECT_EQ(str_end - tab_before, ptrdiff_t(3)); in TEST()
|
| H A D | strtoul_test.cpp | 127 const char *tab_before = "\t10"; in TEST() local 129 ASSERT_EQ(__llvm_libc::strtoul(tab_before, &str_end, 10), 10ul); in TEST() 131 EXPECT_EQ(str_end - tab_before, ptrdiff_t(3)); in TEST()
|
| H A D | strtoll_test.cpp | 159 const char *tab_before = "\t10"; in TEST() local 161 ASSERT_EQ(__llvm_libc::strtoll(tab_before, &str_end, 10), 10ll); in TEST() 163 EXPECT_EQ(str_end - tab_before, ptrdiff_t(3)); in TEST()
|