HomeSort by relevance Sort by last modified time
    Searched defs:long_value (Results 1 - 9 of 9) sorted by null

  /bionic/tests/
system_properties_test2.cpp 57 std::string long_value = "property-"; local
59 long_value += "y";
65 ASSERT_EQ(-1, __system_property_set(property_name.c_str(), long_value.c_str()));
  /external/google-benchmark/src/
commandlineflags.cc 30 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/
commandlineflags.cc 30 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/ltp/testcases/kernel/syscalls/setxattr/
setxattr01.c 77 char *long_value; variable
210 long_value = malloc(XATTR_SIZE_MAX + 2);
211 if (!long_value)
213 memset(long_value, 'v', XATTR_SIZE_MAX + 2);
214 long_value[XATTR_SIZE_MAX + 1] = '\0';
215 tc[3].value = long_value;
  /external/google-breakpad/src/client/
minidump_file_writer_unittest.cc 65 unsigned long long_value; member in struct:ArrayStructure
93 local.long_value = i + 2;
106 local.long_value = i + 2;
  /bionic/libc/malloc_debug/
Config.cpp 128 long long_value = strtol(value.c_str(), &end, 10); local
143 if (long_value < 0) {
145 getprogname(), option.c_str(), long_value);
149 if (static_cast<size_t>(long_value) < min_value) {
151 getprogname(), option.c_str(), min_value, long_value);
154 if (static_cast<size_t>(long_value) > max_value) {
156 getprogname(), option.c_str(), max_value, long_value);
159 *parsed_value = static_cast<size_t>(long_value);
  /art/dexlayout/
dex_writer.cc 97 uint64_t long_value = double_union.l_; local
100 buffer[index--] = long_value >> 56;
101 long_value <<= 8;
102 } while (long_value != 0);
  /external/fmtlib/test/
util-test.cc 510 # define long_value int_value macro
515 # define long_value long_long_value macro
  /external/valgrind/coregrind/
vgdb.c 1310 long long int long_value; local
    [all...]

Completed in 756 milliseconds