Home
last modified time | relevance | path

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

/llvm-project-15.0.7/third-party/benchmark/src/
H A Dcommandlineflags.cc37 const long long_value = strtol(str, &end, 10); // NOLINT in ParseInt32() local
48 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()
/llvm-project-15.0.7/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc1292 const long long_value = strtol(str, &end, 10); // NOLINT in ParseInt32() local
1307 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()
/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp84 PythonInteger long_value(PyRefType::Owned, PyLong_FromLong(3)); in TEST_F() local
85 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()