Searched refs:long_value (Results 1 – 3 of 3) sorted by relevance
37 const long long_value = strtol(str, &end, 10); // NOLINT in ParseInt32() local48 const int32_t result = static_cast<int32_t>(long_value); in ParseInt32()49 if (long_value == std::numeric_limits<long>::max() || in ParseInt32()50 long_value == std::numeric_limits<long>::min() || in ParseInt32()53 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()
84 PythonInteger long_value(PyRefType::Owned, PyLong_FromLong(3)); in TEST_F() local85 Py_ssize_t original_refcnt = long_value.get()->ob_refcnt; in TEST_F()88 PythonInteger borrowed_long(PyRefType::Borrowed, long_value.get()); in TEST_F()