/ndk/tests/device/b16355626-bad-atof-strtod/jni/ |
Android.mk | 4 LOCAL_MODULE := b16355626-bad-atof-strtod 5 LOCAL_SRC_FILES := b16355626-bad-atof-strtod.cpp
|
b16355626-bad-atof-strtod.cpp | 24 float f = atof("90.099998474121094"); 29 f = atof("3.14");
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/ |
pr13201.c | 10 x = atof (argv[1]);
|
/external/libcxx/include/support/solaris/ |
floatingpoint.h | 10 #define atof sun_atof macro 13 #undef atof macro
|
/external/libvorbis/lib/ |
tone.c | 25 f[i]=atof(argv[i+1]); 27 amp[i]=atof(pos+1)*32767.f;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
floatingpoint.h | 10 #define atof sun_atof macro 13 #undef atof macro
|
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
floatingpoint.h | 10 #define atof sun_atof macro 13 #undef atof macro
|
/toolchain/binutils/binutils-2.25/libiberty/ |
strtod.c | 1 /* Implementation of strtod for systems with atof. 44 extern double atof (const char *); 56 return atof (str); 78 return atof (str); 83 return atof (str); 102 return atof (str); 128 return atof (str); 132 return atof (str);
|
/external/compiler-rt/test/cfi/icall/ |
external-call.c | 23 fn(atof(argv[2]));
|
/external/llvm/autoconf/m4/ |
c_printf_a.m4 | 18 B = atof(Buffer);
|
/external/sonic/ |
main.c | 93 pitch = atof(argv[xArg]); 102 rate = atof(argv[xArg]); 108 speed = atof(argv[xArg]); 114 volume = atof(argv[xArg]);
|
/frameworks/base/libs/hwui/ |
Properties.cpp | 84 return atof(buf); 174 overrideAmbientRatio = std::min(std::max(atof(value), 0.0), 10.0); 178 overrideLightRadius = std::min(std::max(atof(value), 0.0), 3000.0); 182 overrideLightPosY = std::min(std::max(atof(value), 0.0), 3000.0); 186 overrideLightPosZ = std::min(std::max(atof(value), 0.0), 3000.0);
|
/external/toybox/toys/lsb/ |
seq.c | 55 case 3: increment = atof(toys.optargs[1]); 56 case 2: first = atof(*toys.optargs); 57 default: last = atof(toys.optargs[toys.optc-1]);
|
/toolchain/binutils/binutils-2.25/gas/ |
makefile.vms | 40 OBJS:=targ-cpu.obj,obj-format.obj,atof-targ.obj,app.obj,as.obj,\ 41 atof-generic.obj,cond.obj,compress-debug.obj,depend.obj,expr.obj,\ 74 $(RM) atof-targ.c;
|
configure.com | 68 $ write sys$output "Generate atof-targ.c" 70 $ create atof-targ.c 71 #include "atof-ieee.c" 233 $ FILES="obj-format,atof-targ,app,as,atof-generic,cond,depend,"+-
|
/bionic/libc/bionic/ |
atof.cpp | 31 double atof(const char* s) { function
|
/external/compiler-rt/test/ubsan/TestCases/Misc/ |
log-path_test.cc | 29 double a = atof(argv[1]);
|
/system/media/audio_utils/tests/ |
limiter_tests.c | 27 float x = atof(argv[i]);
|
/bionic/libc/include/android/ |
legacy_stdlib_inlines.h | 40 static __inline double atof(const char *nptr) { return (strtod(nptr, NULL)); } function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
strop.so | |
/external/opencv3/apps/createsamples/ |
createsamples.cpp | 146 maxxangle = atof( argv[++i] ); 150 maxyangle = atof( argv[++i] ); 154 maxzangle = atof( argv[++i] );
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_string.py | 91 self.assertAlmostEqual(string.atof(" 1 "), 1.0) 92 self.assertRaises(ValueError, string.atof, " 1x ") 93 self.assertRaises(ValueError, string.atof, " x1 ")
|
test_strop.py | 23 self.assertTrue(strop.atof(" 1 ") == 1.0) 24 self.assertRaises(ValueError, strop.atof, " 1x") 25 self.assertRaises(ValueError, strop.atof, " x1 ")
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_string.py | 91 self.assertAlmostEqual(string.atof(" 1 "), 1.0) 92 self.assertRaises(ValueError, string.atof, " 1x ") 93 self.assertRaises(ValueError, string.atof, " x1 ")
|
test_strop.py | 23 self.assertTrue(strop.atof(" 1 ") == 1.0) 24 self.assertRaises(ValueError, strop.atof, " 1x") 25 self.assertRaises(ValueError, strop.atof, " x1 ")
|