Home
last modified time | relevance | path

Searched refs:stoull (Results 1 – 6 of 6) sorted by relevance

/external/libcxx/test/std/strings/string.conversions/
Dstoull.pass.cpp27 assert(std::stoull("0") == 0); in main()
28 assert(std::stoull(L"0") == 0); in main()
29 assert(std::stoull("-0") == 0); in main()
30 assert(std::stoull(L"-0") == 0); in main()
31 assert(std::stoull(" 10") == 10); in main()
32 assert(std::stoull(L" 10") == 10); in main()
34 assert(std::stoull("10g", &idx, 16) == 16); in main()
37 assert(std::stoull(L"10g", &idx, 16) == 16); in main()
43 std::stoull("", &idx); in main()
53 std::stoull(L"", &idx); in main()
[all …]
/external/puffin/src/
Dmain.cc58 extents.emplace_back(stoull(offset_str), stoull(length_str)); in StringToExtents()
/external/libcxx/src/
Dstring.cpp298 stoull(const string& str, size_t* idx, int base) in stoull() function
304 stoull(const wstring& str, size_t* idx, int base) in stoull() function
/external/libese/apps/boot/
Dese_boot_tool.cpp389 unsigned long long conv = std::stoull(args[3], nullptr, 0); in handle_rollback()
/external/libkmsxx/utils/
Dkmstest.cpp302 props.push_back(PropInfo(name, stoull(val, 0, 0))); in parse_prop()
/external/libcxx/include/
Dstring454 unsigned long long stoull(const string& str, size_t* idx = 0, int base = 10);
474 unsigned long long stoull(const wstring& str, size_t* idx = 0, int base = 10);
4191 _LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10);
4211 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10…