Home
last modified time | relevance | path

Searched refs:int32_max (Results 1 – 2 of 2) sorted by relevance

/art/runtime/base/
Dtime_utils.cc208 constexpr int32_t int32_max = std::numeric_limits<int32_t>::max(); in InitTimeSpec() local
209 if (UNLIKELY(end_sec >= int32_max)) { in InitTimeSpec()
217 end_sec = int32_max - 1; // Allow for increment below. in InitTimeSpec()
/art/compiler/utils/arm/
Dassembler_thumb2.cc1946 static constexpr int32_t int32_max = std::numeric_limits<int32_t>::max(); in GetOffset() local
1947 DCHECK_LE(target_, static_cast<uint32_t>(int32_max)); in GetOffset()
1948 DCHECK_LE(location_, static_cast<uint32_t>(int32_max)); in GetOffset()
1949 DCHECK_LE(adjustment_, static_cast<uint32_t>(int32_max)); in GetOffset()
1952 DCHECK_LE(adjustment_, static_cast<uint32_t>(int32_max - diff)); in GetOffset()