HomeSort by relevance Sort by last modified time
    Searched refs:int32_max (Results 1 - 8 of 8) sorted by null

  /external/Microsoft-GSL/tests/
utils_tests.cpp 101 const auto int32_max = std::numeric_limits<int32_t>::max(); local
106 CHECK(narrow<uint32_t>(int32_max) == static_cast<uint32_t>(int32_max));
  /art/runtime/base/
time_utils.cc 208 constexpr int32_t int32_max = std::numeric_limits<int32_t>::max(); local
209 if (UNLIKELY(end_sec >= int32_max)) {
215 LOG(INFO) << "Note: end time exceeds INT32_MAX: " << end_sec;
217 end_sec = int32_max - 1; // Allow for increment below.
  /external/nanopb-c/tests/alltypes_pointer/
encode_alltypes_pointer.c 89 static int32_t int32_max = INT32_MAX; local
98 Limits req_limits = {&int32_min, &int32_max,
decode_alltypes_pointer.c 130 TEST(alltypes.req_limits->int32_max && *alltypes.req_limits->int32_max == INT32_MAX);
  /external/nanopb-c/tests/alltypes/
encode_alltypes.c 71 alltypes.req_limits.int32_max = INT32_MAX;
decode_alltypes.c 174 TEST(alltypes.req_limits.int32_max == INT32_MAX);
  /external/nanopb-c/tests/alltypes_callback/
decode_alltypes_callback.c 162 TEST(decoded.int32_max == INT32_MAX);
encode_alltypes_callback.c 147 limits.int32_max = INT32_MAX;

Completed in 1152 milliseconds