Home
last modified time | relevance | path

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

/external/pdfium/xfa/fgas/localization/
Dfgas_locale.cpp98 explicit CFX_LCNumeric(FX_FLOAT dbRetValue);
213 CFX_LCNumeric::CFX_LCNumeric(FX_FLOAT dbRetValue) { in CFX_LCNumeric() argument
214 m_Integral = (int64_t)dbRetValue; in CFX_LCNumeric()
215 m_Fractional = (uint32_t)(((dbRetValue > 0) ? (dbRetValue - m_Integral) in CFX_LCNumeric()
216 : (m_Integral - dbRetValue)) * in CFX_LCNumeric()
231 FX_FLOAT dbRetValue = m_Fractional / 4294967296.0f; in GetFloat() local
232 dbRetValue = m_Integral + (m_Integral >= 0 ? dbRetValue : -dbRetValue); in GetFloat()
234 dbRetValue *= FXSYS_pow(10, (FX_FLOAT)m_Exponent); in GetFloat()
236 return dbRetValue; in GetFloat()
748 double dbRetValue = 0; in ParseNum() local
[all …]