OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_tstof
(Results
1 - 2
of
2
) sorted by null
/external/aac/libSYS/include/
cmdl_parser.h
117
#ifndef
_tstof
/* For Visual Studio 6 */
120
#define
_tstof
(x) (float) wcstod(x, NULL) /* For Visual Studio 6 */
macro
122
#define
_tstof
atof
macro
162
#define
_tstof
FDKatof
macro
/external/aac/libSYS/src/
cmdl_parser.cpp
249
*tmp = (float)
_tstof
(arg);
256
// use sscanf instead
_tstof
because of gcc
257
//
_tstof
(arg,"%lf",tmp); // '%lf' reads as double
258
*tmp =
_tstof
(arg); // '%lf' reads as double
Completed in 864 milliseconds