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

/external/ltp/testcases/kernel/syscalls/setxattr/
H A Dsetxattr01.c73 static char *long_value; variable
107 .value = &long_value,
173 long_value = SAFE_MALLOC(XATTR_SIZE_MAX + 2);
174 memset(long_value, 'v', XATTR_SIZE_MAX + 2);
175 long_value[XATTR_SIZE_MAX + 1] = '\0';
/external/google-benchmark/src/
H A Dcommandlineflags.cc30 const long long_value = strtol(str, &end, 10); // NOLINT local
41 const int32_t result = static_cast<int32_t>(long_value);
42 if (long_value == std::numeric_limits<long>::max() ||
43 long_value == std::numeric_limits<long>::min() ||
46 result != long_value
/external/libcxx/utils/google-benchmark/src/
H A Dcommandlineflags.cc30 const long long_value = strtol(str, &end, 10); // NOLINT local
41 const int32_t result = static_cast<int32_t>(long_value);
42 if (long_value == std::numeric_limits<long>::max() ||
43 long_value == std::numeric_limits<long>::min() ||
46 result != long_value
/external/google-breakpad/src/client/
H A Dminidump_file_writer_unittest.cc65 unsigned long long_value; member in struct:ArrayStructure
93 local.long_value = i + 2;
106 local.long_value = i + 2;
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc672 const long long_value = strtol(str, &end, 10); // NOLINT
687 const Int32 result = static_cast<Int32>(long_value);
688 if (long_value == LONG_MAX || long_value == LONG_MIN ||
691 result != long_value
/external/protobuf/gtest/src/
H A Dgtest-port.cc633 const long long_value = strtol(str, &end, 10); // NOLINT
648 const Int32 result = static_cast<Int32>(long_value);
649 if (long_value == LONG_MAX || long_value == LONG_MIN ||
652 result != long_value
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/
H A Dgtest-port.cc668 const long long_value = strtol(str, &end, 10); // NOLINT
683 const Int32 result = static_cast<Int32>(long_value);
684 if (long_value == LONG_MAX || long_value == LONG_MIN ||
687 result != long_value
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-port.cc709 const long long_value = strtol(str, &end, 10); // NOLINT
724 const Int32 result = static_cast<Int32>(long_value);
725 if (long_value == LONG_MAX || long_value == LONG_MIN ||
728 result != long_value
/external/mesa3d/src/gtest/src/
H A Dgtest-port.cc727 const long long_value = strtol(str, &end, 10); // NOLINT
742 const Int32 result = static_cast<Int32>(long_value);
743 if (long_value == LONG_MAX || long_value == LONG_MIN ||
746 result != long_value
/external/googletest/googletest/src/
H A Dgtest-port.cc1120 const long long_value = strtol(str, &end, 10); // NOLINT
1135 const Int32 result = static_cast<Int32>(long_value);
1136 if (long_value == LONG_MAX || long_value == LONG_MIN ||
1139 result != long_value
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-port.cc1152 const long long_value = strtol(str, &end, 10); // NOLINT
1167 const Int32 result = static_cast<Int32>(long_value);
1168 if (long_value == LONG_MAX || long_value == LONG_MIN ||
1171 result != long_value
/external/v8/testing/gtest/src/
H A Dgtest-port.cc1134 const long long_value = strtol(str, &end, 10); // NOLINT
1149 const Int32 result = static_cast<Int32>(long_value);
1150 if (long_value == LONG_MAX || long_value == LONG_MIN ||
1153 result != long_value
/external/valgrind/coregrind/
H A Dvgdb.c1310 long long int long_value; local
1315 long_value = strtoll(eq_pos+1, &wrong, 10);
1316 if (long_value < 0 || long_value > INT_MAX)
1321 *value = (int) long_value;
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
H A Dgtest-port.cc1110 const long long_value = strtol(str, &end, 10); // NOLINT
1125 const Int32 result = static_cast<Int32>(long_value);
1126 if (long_value == LONG_MAX || long_value == LONG_MIN ||
1129 result != long_value
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest-all.cc8216 const long long_value = strtol(str, &end, 10); // NOLINT
8231 const Int32 result = static_cast<Int32>(long_value);
8232 if (long_value == LONG_MAX || long_value == LONG_MIN ||
8235 result != long_value
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest-all.cc8937 const long long_value = strtol(str, &end, 10); // NOLINT
8952 const Int32 result = static_cast<Int32>(long_value);
8953 if (long_value == LONG_MAX || long_value == LONG_MIN ||
8956 result != long_value
/external/python/cpython3/Modules/
H A Dposixmodule.c684 long long_value; local
692 long_value = PyLong_AsLongAndOverflow(index, &overflow);
695 if (overflow > 0 || long_value > INT_MAX) {
700 if (overflow < 0 || long_value < INT_MIN) {
706 *p = (int)long_value;

Completed in 860 milliseconds