Home
last modified time | relevance | path

Searched refs:wcstoull (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/android/support/src/wcstox/
Dwcstol.c25 unsigned long long wcstoull(const wchar_t *restrict s, in wcstoull() function
60 return wcstoull(s, p, base); in wcstoumax()
/ndk/sources/android/support/tests/
Dwchar_unittest.cc215 TEST(wchar, wcstoull) { in TEST() argument
235 EXPECT_EQ(kData[n].expected, wcstoull(kData[n].input, &end, kData[n].base)); in TEST()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dsupport.h50 #define wcstoull _wcstoui64 macro
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcwchar62 unsigned long long wcstoull(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base); //…
159 using ::wcstoull;
/ndk/sources/android/support/include/
Dwchar.h155 unsigned long long wcstoull (const wchar_t *__restrict__, wchar_t **__restrict__, int);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dwchar_h.pass.cpp73 …static_assert((std::is_same<decltype(wcstoull(L"", (wchar_t**)0, 0)), unsigned long long>::value),… in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcwchar.pass.cpp73 …static_assert((std::is_same<decltype(std::wcstoull(L"", (wchar_t**)0, 0)), unsigned long long>::va… in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstring.cpp175 return as_integer_helper<unsigned long long>( func, s, idx, base, wcstoull ); in as_integer()