Home
last modified time | relevance | path

Searched refs:strtoull (Results 1 – 15 of 15) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/lib/
Dstdlib.in.h366 extern unsigned long long strtoull (const char *string, char **endptr, int base);
369 # undef strtoull
370 # define strtoull(s,e,b) \
373 strtoull (s, e, b))
/ndk/sources/android/support/src/
Dlocale_support.c120 return strtoull(nptr, endptr, base); in strtoull_l()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstdlib45 unsigned long long strtoull(const char* restrict nptr, char** restrict endptr, int base); // C99
118 using ::strtoull;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dsupport.h48 #define strtoull _strtoui64 macro
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstdlib_h.pass.cpp53 static_assert((std::is_same<decltype(strtoull("", endptr,0)), unsigned long long>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
Dxlocale.h143 return strtoull(__nptr, __endptr, __base); in strtoull_l()
/ndk/sources/cxx-stl/gabi++/include/
Dcstdlib60 using ::strtoull;
/ndk/sources/cxx-stl/system/include/
Dcstdlib60 using ::strtoull;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/
Dcstdlib.pass.cpp53 …static_assert((std::is_same<decltype(std::strtoull("", endptr,0)), unsigned long long>::value), ""… in main()
/ndk/sources/android/libthread_db/gdb-6.6/
Dlibthread_db.c97 *cap = (uint64_t) strtoull(perm+8, &end, 16); in _get_task_permitted_caps()
/ndk/sources/android/libthread_db/gdb-7.3.x/
Dlibthread_db.c93 *cap = (uint64_t) strtoull(perm+8, &end, 16); in _get_task_permitted_caps()
/ndk/sources/android/libthread_db/gdb-7.6/
Dlibthread_db.c105 *cap = (uint64_t) strtoull(perm+8, &end, 16); in _get_task_permitted_caps()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
Dxlocale.h294 return strtoull(__nptr, __endptr, __base); in strtoull_l()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstring.cpp130 return as_integer_helper<unsigned long long>( func, s, idx, base, strtoull ); in as_integer()
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-internal-inl.h1018 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10); in ParseNaturalNumber()