Searched refs:long_value (Results 1 – 5 of 5) sorted by relevance
30 const long long_value = strtol(str, &end, 10); // NOLINT in ParseInt32() local41 const int32_t result = static_cast<int32_t>(long_value); in ParseInt32()42 if (long_value == std::numeric_limits<long>::max() || in ParseInt32()43 long_value == std::numeric_limits<long>::min() || in ParseInt32()46 result != long_value in ParseInt32()
1292 const long long_value = strtol(str, &end, 10); // NOLINT in ParseInt32() local1307 const Int32 result = static_cast<Int32>(long_value); in ParseInt32()1308 if (long_value == LONG_MAX || long_value == LONG_MIN || in ParseInt32()1311 result != long_value in ParseInt32()
358 long long_value = value; in do_printf_spec() local370 fprintf (out, format, long_value); in do_printf_spec()
21 long long_value; member