Home
last modified time | relevance | path

Searched refs:strtoll (Results 1 – 11 of 11) sorted by relevance

/ndk/sources/android/support/include/
Dstdlib.h43 long long strtoll(const char*, char**, int);
/ndk/sources/android/support/src/
Dlocale_support.c113 return strtoll(nptr, endptr, base); in strtoll_l()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dsupport.h47 #define strtoll _strtoi64 macro
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstdlib43 long long strtoll (const char* restrict nptr, char** restrict endptr, int base); // C99
114 using ::strtoll;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstdlib_h.pass.cpp51 static_assert((std::is_same<decltype(strtoll("", endptr,0)), long long>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
Dxlocale.h128 return strtoll(__nptr, __endptr, __base); in strtoll_l()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/
Dcstdlib.pass.cpp51 static_assert((std::is_same<decltype(std::strtoll("", endptr,0)), long long>::value), ""); in main()
/ndk/sources/cxx-stl/gabi++/include/
Dcstdlib58 using ::strtoll;
/ndk/sources/cxx-stl/system/include/
Dcstdlib58 using ::strtoll;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
Dxlocale.h279 return strtoll(__nptr, __endptr, __base); in strtoll_l()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstring.cpp122 return as_integer_helper<long long>( func, s, idx, base, strtoll ); in as_integer()