HomeSort by relevance Sort by last modified time
    Searched refs:atof (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /external/libcxx/include/support/solaris/
floatingpoint.h 10 #define atof sun_atof macro
13 #undef atof macro
  /bionic/libc/bionic/
atof.cpp 31 double atof(const char* s) { function
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
atof.c 19 atof(const char *string) function
gdtoa.inf 55 atof.c
  /external/compiler-rt/test/ubsan/TestCases/Misc/
log-path_test.cc 29 double a = atof(argv[1]);
  /external/compiler-rt/test/cfi/icall/
external-call.c 23 fn(atof(argv[2]));
  /external/libcups/filter/
common.c 115 PageLeft = (float)atof(val);
118 PageBottom = (float)atof(val);
121 PageRight = PageWidth - (float)atof(val);
124 PageTop = PageLength - (float)atof(val);
134 PageRight = PageWidth - (float)atof(val);
137 PageTop = PageLength - (float)atof(val);
140 PageLeft = (float)atof(val);
143 PageBottom = (float)atof(val);
153 PageBottom = (float)atof(val);
156 PageLeft = (float)atof(val)
    [all...]
  /external/lmfit/demo/
nonlin1.c 45 p[0] = atof( argv[1] );
46 p[1] = atof( argv[2] );
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
atof.c 2 /* Just in case you haven't got an atof() around...
11 double atof(char *s) function
strtod.c 23 and is in range. It leaves the work of conversion to atof(), which is
28 available in the BSD "universe" (but they do have atof()).
58 extern double atof(const char *); /* Only called when result known to be ok */
158 return atof(buffer)*sign;
  /external/python/cpython2/Python/
atof.c 2 /* Just in case you haven't got an atof() around...
11 double atof(char *s) function
strtod.c 23 and is in range. It leaves the work of conversion to atof(), which is
28 available in the BSD "universe" (but they do have atof()).
58 extern double atof(const char *); /* Only called when result known to be ok */
158 return atof(buffer)*sign;
  /external/sonic/
main.c 93 pitch = atof(argv[xArg]);
102 rate = atof(argv[xArg]);
108 speed = atof(argv[xArg]);
114 volume = atof(argv[xArg]);
  /bionic/libc/include/android/
legacy_stdlib_inlines.h 70 static __inline double atof(const char *nptr) { return (strtod(nptr, NULL)); } function
  /external/eigen/bench/spbench/
spbenchsolver.cpp 65 tol = atof(inval.c_str());
  /external/ltp/testcases/misc/math/atof/
atof01.c 28 * atof(3), sprintf(3), ( doprnt.s )
90 r1 = atof(buf);
112 r1 = atof(buf);
126 r1 = atof(buf);
167 r1 = atof(buf);
  /frameworks/av/tools/resampler_tools/
fir.cpp 178 Fs = atof(optarg);
181 Fc = atof(optarg);
208 beta = atof(optarg);
211 atten = pow(10, -fabs(atof(optarg))*0.05 );
  /external/fec/
vtest27.c 85 ebn0 = atof(optarg);
88 Gain = atof(optarg);
vtest29.c 85 ebn0 = atof(optarg);
88 Gain = atof(optarg);
vtest39.c 85 ebn0 = atof(optarg);
88 Gain = atof(optarg);
  /external/ltp/testcases/kernel/sched/sched_stress/
sched_tc0.c 238 execution_time = atof(optarg);
sched_driver.c 473 *t2 = atof(t2asc);
492 return (atof(temp));
777 stress_percent = atof(optarg);
781 process_slots = atof(optarg);
785 execution_time = atof(optarg);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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 ")
  /external/python/cpython2/Lib/test/
test_strop.py 25 self.assertTrue(strop.atof(" 1 ") == 1.0)
26 self.assertRaises(ValueError, strop.atof, " 1x")
27 self.assertRaises(ValueError, strop.atof, " x1 ")

Completed in 1377 milliseconds

1 2 3 4 5 6