Searched refs:exponent32 (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/html/parser/
H A DHTMLParserIdioms.cpp128 int32_t exponent32; local
143 exponent32 = digit - '0';
146 exponent32 = (10 * exponent32) + digit - '0';
147 if (cursor - cursorSaved > 8 || exponent32 > 19999)
153 exponent = static_cast<int>(exponent32);

Completed in 45 milliseconds