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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
floatingpoint.h 2 #define strtod sun_strtod macro
5 #undef strtod macro
  /external/chromium_org/v8/test/cctest/
test-strtod.cc 36 #include "strtod.h"
46 return Strtod(StringToVector(str), exponent);
50 TEST(Strtod) {
54 CHECK_EQ(0.0, Strtod(vector, 1));
55 CHECK_EQ(0.0, Strtod(vector, 2));
56 CHECK_EQ(0.0, Strtod(vector, -2));
57 CHECK_EQ(0.0, Strtod(vector, -999));
58 CHECK_EQ(0.0, Strtod(vector, +999));
61 CHECK_EQ(1.0, Strtod(vector, 0));
62 CHECK_EQ(10.0, Strtod(vector, 1))
    [all...]
  /external/v8/test/cctest/
test-strtod.cc 11 #include "strtod.h"
21 return Strtod(StringToVector(str), exponent);
25 TEST(Strtod) {
29 CHECK_EQ(0.0, Strtod(vector, 1));
30 CHECK_EQ(0.0, Strtod(vector, 2));
31 CHECK_EQ(0.0, Strtod(vector, -2));
32 CHECK_EQ(0.0, Strtod(vector, -999));
33 CHECK_EQ(0.0, Strtod(vector, +999));
36 CHECK_EQ(1.0, Strtod(vector, 0));
37 CHECK_EQ(10.0, Strtod(vector, 1))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
strtod.c 36 #include "strtod.h"
41 * Wrapper around strtod which uses the "C" locale so the decimal
55 return strtod(s, end);
  /external/mesa3d/src/glsl/
strtod.c 36 #include "strtod.h"
41 * Wrapper around strtod which uses the "C" locale so the decimal
55 return strtod(s, end);
  /external/chromium_org/third_party/mesa/
README.chromium 33 - Modified glsl_strtod in src/glsl/strtod.c to use strtod instead of
  /external/llvm/test/Transforms/InstCombine/
strto-1.ll 10 declare double @strtod(i8* %s, i8** %endptr, i32 %base)
11 ; CHECK: declare double @strtod(i8* readonly, i8** nocapture, i32)
37 call double @strtod(i8* %x, i8** null, i32 10)
38 ; CHECK-NEXT: call double @strtod(i8* nocapture %x, i8** null, i32 10)
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 23 double strtod(const char *nptr, char **endptr);
99 double t18(char **x) { return strtod("123.4", x); }
101 // CHECK: strtod
  /external/chromium/base/third_party/dmg_fp/
dmg_fp.h 14 double strtod(const char* s00, char** se);
gcc_warnings.patch 30 -extern "C" double strtod(const char *s00, char **se);
32 +double strtod(const char *s00, char **se);
  /external/chromium_org/base/third_party/dmg_fp/
dmg_fp.h 14 double strtod(const char* s00, char** se);
gcc_warnings.patch 30 -extern "C" double strtod(const char *s00, char **se);
32 +double strtod(const char *s00, char **se);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
stdlib-ldbl.h 26 __LDBL_REDIR1_DECL (strtold, strtod)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
stdlib-ldbl.h 26 __LDBL_REDIR1_DECL (strtold, strtod)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
stdlib-ldbl.h 26 __LDBL_REDIR1_DECL (strtold, strtod)
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdlib.in.h 320 # define strtod rpl_strtod
324 extern double strtod (const char *str, char **endp);
327 # undef strtod
328 # define strtod(s, e) \
329 (GL_LINK_WARNING ("strtod is unportable - " \
330 "use gnulib module strtod for portability"), \
331 strtod (s, e))
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
strtod.h 39 double Strtod(Vector<const char> buffer, int exponent);
  /external/chromium_org/v8/src/
strtod.h 36 double Strtod(Vector<const char> buffer, int exponent);
  /external/v8/src/
strtod.h 36 double Strtod(Vector<const char> buffer, int exponent);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libform.so 
libform.so.5 
libform.so.5.6 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/
libform.so 
libform.so.5 
libform.so.5.6 

Completed in 3067 milliseconds

1 2 3 4 5 6 7 8 91011>>