Home
last modified time | relevance | path

Searched refs:wcstol (Results 1 – 18 of 18) sorted by relevance

/third_party/musl/libc-test/src/functional/
Dwcstol.c24 TEST(l, wcstol(L"2147483647", 0, 0), 2147483647L, "max 32bit signed %ld != %ld"); in main()
28 TEST(l, wcstol(s=L"2147483648", &c, 0), 2147483647L, "uncaught overflow %ld != %ld"); in main()
31 TEST(l, wcstol(s=L"-2147483649", &c, 0), -2147483647L-1, "uncaught overflow %ld != %ld"); in main()
50 …TEST(l, wcstol(s=L"9223372036854775808", &c, 0), 9223372036854775807L, "uncaught overflow %ld != %… in main()
53 …TEST(l, wcstol(s=L"-9223372036854775809", &c, 0), -9223372036854775807L-1, "uncaught overflow %ld … in main()
75 TEST(l, wcstol(L"z", 0, 36), 35, "%ld != %ld"); in main()
76 TEST(l, wcstol(L"00010010001101000101011001111000", 0, 2), 0x12345678, "%ld != %ld"); in main()
78 TEST(l, wcstol(s=L"0xz", &c, 16), 0, "%ld != %ld"); in main()
81 TEST(l, wcstol(s=L"0x1234", &c, 16), 0x1234, "%ld != %ld"); in main()
85 TEST(l, wcstol(s=L"123", &c, 37), 0, "%ld != %ld"); in main()
Dtest_src_functional.gni80 "wcstol",
/third_party/boost/libs/regex/test/regress/
Dtest_deprecated.cpp29 using ::wcstol;
377 long code2 = std::wcstol(buf, 0, 10); in test_deprecated()
/third_party/boost/libs/regex/src/
Dwc_regex_traits.cpp83 using ::wcstol;
267 int result = std::wcstol(b, &ep, radix); in value()
/third_party/musl/src/stdlib/
Dwcstol.c69 long wcstol(const wchar_t *restrict s, wchar_t **restrict p, int base) in wcstol() function
/third_party/boost/boost/xpressive/traits/
Dc_regex_traits.hpp399 int val = wcstol(begin, &end, radix); in value()
/third_party/musl/libc-test/src/api/
Dwchar.c66 {long(*p)(const wchar_t*restrict,wchar_t**restrict,int) = wcstol;} in f()
/third_party/boost/boost/compatibility/cpp_c_headers/
Dcwchar106 using ::wcstol;
/third_party/musl/porting/liteos_a/kernel/include/
Dwchar.h98 long wcstol (const wchar_t *__restrict, wchar_t **__restrict, int);
/third_party/musl/ndk_musl_include/
Dwchar.h98 long wcstol (const wchar_t *__restrict, wchar_t **__restrict, int);
/third_party/musl/include/
Dwchar.h98 long wcstol (const wchar_t *__restrict, wchar_t **__restrict, int);
/third_party/musl/porting/liteos_m/kernel/include/
Dwchar.h100 long wcstol (const wchar_t *__restrict, wchar_t **__restrict, int);
/third_party/musl/porting/uniproton/kernel/include/
Dwchar.h100 long wcstol (const wchar_t *__restrict, wchar_t **__restrict, int);
/third_party/musl/
Dlibc.map.txt1920 wcstol;
Dmusl_src.gni1200 "src/stdlib/wcstol.c",
/third_party/glib/glib/
Dgutils.c1266 long build = wcstol ((const wchar_t *) current_build, &end, 10); in get_windows_8_1_update()
/third_party/python/Python/
Dinitconfig.c1635 long value = wcstol(wstr, (wchar_t **)&endptr, 10); in config_wstr_to_int()
/third_party/NuttX/
DReleaseNotes13883 - C Library: Add wcstoull(), swprintf(), wcstod(), wcstof(), wcstol(),