Home
last modified time | relevance | path

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

/ndk/sources/host-tools/sed-4.2.1/lib/
Dstdlib.in.h345 extern long long strtoll (const char *string, char **endptr, int base);
348 # undef strtoll
349 # define strtoll(s,e,b) \
352 strtoll (s, e, b))
/ndk/sources/android/support/include/
Dstdlib.h41 long long strtoll(const char*, char**, int);
/ndk/sources/android/support/src/
Dlocale_support.c116 return strtoll(nptr, endptr, base); in strtoll_l()
/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/include/support/win32/
Dsupport.h47 #define strtoll _strtoi64 macro
/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/gabi++/include/
Dcstdlib58 using ::strtoll;
/ndk/sources/cxx-stl/system/include/
Dcstdlib58 using ::strtoll;
/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/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()