HomeSort by relevance Sort by last modified time
    Searched full:strtold (Results 1 - 25 of 309) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-openbsd/lib/libc/locale/
wcstold.c 11 #define STRTOD_FUNC strtold
  /external/llvm/test/Transforms/InstCombine/
strto-1.ll 22 declare double @strtold(i8* %s, i8** %endptr)
23 ; CHECK: declare double @strtold(i8* readonly, i8** nocapture)
65 call double @strtold(i8* %x, i8** null)
66 ; CHECK-NEXT: call double @strtold(i8* nocapture %x, i8** null)
disable-simplify-libcalls.ll 34 declare x86_fp80 @strtold(i8*, i8**)
205 %ret = call x86_fp80 @strtold(i8* %x, i8** %y)
207 ; CHECK: call x86_fp80 @strtold
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 25 long double strtold(const char *nptr, char **endptr);
107 long double t20(char **x) { return strtold("123.4", x); }
109 // CHECK: strtold
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
stdlib-ldbl.h 26 __LDBL_REDIR1_DECL (strtold, strtod)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
stdlib-ldbl.h 26 __LDBL_REDIR1_DECL (strtold, strtod)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
stdlib-ldbl.h 26 __LDBL_REDIR1_DECL (strtold, strtod)
  /bionic/libc/bionic/
strtold.cpp 34 long double strtold(const char* s, char** end_ptr) { function
  /ndk/sources/android/support/include/
stdlib.h 44 long double strtold(const char*, char**);
  /ndk/sources/android/support/src/
stdlib_support.c 37 long double strtold(const char* nptr, char** endptr) { function
locale_support.c 121 return strtold(nptr, endptr);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
cstdlib 58 using std::strtold;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
cstdlib 58 using std::strtold;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
cstdlib 58 using std::strtold;
  /prebuilts/ndk/current/sources/android/support/include/
stdlib.h 44 long double strtold(const char*, char**);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
cstdlib 58 using std::strtold;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
cstdlib 194 #undef strtold
233 using ::strtold;
253 using ::__gnu_cxx::strtold;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
cstdlib 194 #undef strtold
233 using ::strtold;
253 using ::__gnu_cxx::strtold;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
cstdlib 194 #undef strtold
233 using ::strtold;
253 using ::__gnu_cxx::strtold;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
cstdlib 194 #undef strtold
233 using ::strtold;
253 using ::__gnu_cxx::strtold;
  /external/libcxx/include/support/solaris/
xlocale.h 49 return strtold(__nptr, __endptr);
  /external/libcxx/include/
cstdlib 41 long double strtold (const char* restrict nptr, char** restrict endptr); // C99
111 using ::strtold;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cstdlib 41 long double strtold (const char* restrict nptr, char** restrict endptr); // C99
111 using ::strtold;
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
cstdlib 41 long double strtold (const char* restrict nptr, char** restrict endptr); // C99
111 using ::strtold;
  /bionic/tests/
stdlib_test.cpp 299 TEST(stdlib, strtold) {
300 ASSERT_DOUBLE_EQ(1.23, strtold("1.23", NULL));

Completed in 291 milliseconds

1 2 3 4 5 6 7 8 91011>>