OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:atof_dot
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/angle_dx11/src/compiler/
util.h
14
//
atof_dot
is like atof but forcing C locale, i.e. forcing '.' as decimal point.
15
double
atof_dot
(const char *str);
util.cpp
18
double
atof_dot
(const char *str)
function
glslang.l
196
{D}+{E} { yylval->lex.f = static_cast<float>(
atof_dot
(yytext)); return FLOATCONSTANT; }
197
{D}+"."{D}*({E})? { yylval->lex.f = static_cast<float>(
atof_dot
(yytext)); return FLOATCONSTANT; }
198
"."{D}+({E})? { yylval->lex.f = static_cast<float>(
atof_dot
(yytext)); return FLOATCONSTANT; }
glslang_lex.cpp
[
all
...]
Completed in 138 milliseconds