Home
last modified time | relevance | path

Searched refs:iExponent (Results 1 – 1 of 1) sorted by relevance

/external/pdfium/xfa/fgas/crt/
Dcfgas_formatstring.cpp1154 int32_t iExponent = 0; in ParseNum() local
1240 iExponent = iExponent + FXSYS_DecimalCharToInt(str[cc]) * 10; in ParseNum()
1258 iExponent = bExpSign ? -iExponent : iExponent; in ParseNum()
1431 iExponent = iExponent * 10 + FXSYS_DecimalCharToInt(str[cc]); in ParseNum()
1434 iExponent = bExpSign ? -iExponent : iExponent; in ParseNum()
1529 if (iExponent || bHavePercentSymbol) { in ParseNum()
1531 if (iExponent) { in ParseNum()
1533 CFX_Decimal(FXSYS_pow(10, static_cast<float>(iExponent)), 3); in ParseNum()