Searched refs:exponentLong (Results 1 – 4 of 4) sorted by relevance
365 int64_t exponentLong = digitsConsumed.toLong(false); in match() local366 U_ASSERT(exponentLong >= 0); in match()367 if (exponentLong <= INT32_MAX) { in match()368 auto exponentInt = static_cast<int32_t>(exponentLong); in match()
383 long exponentLong = digitsConsumed.toLong(false); in match() local384 assert exponentLong >= 0; in match() local385 if (exponentLong <= Integer.MAX_VALUE) { in match()386 int exponentInt = (int) exponentLong; in match()
381 long exponentLong = digitsConsumed.toLong(false); in match() local382 assert exponentLong >= 0; in match() local383 if (exponentLong <= Integer.MAX_VALUE) { in match()384 int exponentInt = (int) exponentLong; in match()
210 long long exponentLong = in NumericLexFloat32OutOfRangeToInfinity() local212 if (exponentLong > std::numeric_limits<float>::max_exponent10) in NumericLexFloat32OutOfRangeToInfinity()216 else if (exponentLong < std::numeric_limits<float>::min_exponent10) in NumericLexFloat32OutOfRangeToInfinity()221 exponent = static_cast<int>(exponentLong); in NumericLexFloat32OutOfRangeToInfinity()