HomeSort by relevance Sort by last modified time
    Searched refs:kMaxInt (Results 1 - 25 of 50) sorted by null

1 2

  /art/runtime/entrypoints/
math_entrypoints.cc 62 static const double kMaxInt = static_cast<double>(static_cast<int32_t>(0x7fffffffUL));
64 if (d >= kMaxInt) {
76 static const float kMaxInt = static_cast<float>(static_cast<int32_t>(0x7fffffffUL));
78 if (f >= kMaxInt) {
  /external/v8/test/cctest/
test-assembler-arm.cc 517 TestRoundingMode(s32_f64, RN, static_cast<double>(kMaxInt), kMaxInt);
518 TestRoundingMode(s32_f64, RN, (kMaxInt + 0.49), kMaxInt);
519 TestRoundingMode(s32_f64, RN, (kMaxInt + 1.0), kMaxInt, true);
520 TestRoundingMode(s32_f64, RN, (kMaxInt + 0.5), kMaxInt, true);
533 TestRoundingMode(s32_f64, RM, static_cast<double>(kMaxInt), kMaxInt);
    [all...]
  /external/chromium_org/v8/src/
date.h 46 static const int kMaxEpochTimeInSec = kMaxInt;
48 static_cast<int64_t>(kMaxInt) * 1000;
60 static const int kInvalidLocalOffsetInMs = kMaxInt;
globals.h 237 const int kMaxInt = 0x7FFFFFFF;
238 const int kMinInt = -kMaxInt - 1;
type-info.h 110 if (value >= kMinInt && value <= kMaxInt &&
date.cc 230 if (dst_usage_counter_ >= kMaxInt - 10) {
dateparser.h 64 static const int kNone = kMaxInt;
lithium-allocator.h 133 return LifetimePosition(kMaxInt);
platform.h 618 LOCAL_STORAGE_KEY_MAX_VALUE = kMaxInt
builtins.cc 788 if (start < kMinInt || start > kMaxInt) {
801 if (end < kMinInt || end > kMaxInt) {
886 if (start < kMinInt || start > kMaxInt) {
    [all...]
frames.h 204 ID_MAX_VALUE = kMaxInt,
hydrogen-instructions.cc 165 if (result > kMaxInt) {
167 return kMaxInt;
275 upper_ = kMaxInt;
1075 // instruction deopts. Hence clamp it to kMaxInt.
1076 int abs_upper = upper == kMinInt ? kMaxInt : abs(upper);
1077 int abs_lower = lower == kMinInt ? kMaxInt : abs(lower);
    [all...]
  /external/v8/src/
date.h 46 static const int kMaxEpochTimeInSec = kMaxInt;
48 static_cast<int64_t>(kMaxInt) * 1000;
60 static const int kInvalidLocalOffsetInMs = kMaxInt;
globals.h 224 const int kMaxInt = 0x7FFFFFFF;
225 const int kMinInt = -kMaxInt - 1;
type-info.h 110 if (value >= kMinInt && value <= kMaxInt &&
date.cc 230 if (dst_usage_counter_ >= kMaxInt - 10) {
dateparser.h 64 static const int kNone = kMaxInt;
platform.h 427 LOCAL_STORAGE_KEY_MAX_VALUE = kMaxInt
lithium-allocator.h 133 return LifetimePosition(kMaxInt);
frames.h 162 ID_MAX_VALUE = kMaxInt,
hydrogen-instructions.cc 89 if (result > kMaxInt) {
91 return kMaxInt;
174 upper_ = kMaxInt;
1056 Range* range = new(zone) Range(kMinInt, kMaxInt);
    [all...]
hydrogen-instructions.h 227 upper_(kMaxInt),
244 return new(zone) Range(lower_, kMaxInt);
258 return lower_ == kMinInt && upper_ == kMaxInt && CanBeMinusZero();
    [all...]
  /external/chromium_org/v8/test/cctest/
test-assembler-arm.cc 527 TestRoundingMode(s32_f64, RN, static_cast<double>(kMaxInt), kMaxInt);
528 TestRoundingMode(s32_f64, RN, (kMaxInt + 0.49), kMaxInt);
529 TestRoundingMode(s32_f64, RN, (kMaxInt + 1.0), kMaxInt, true);
530 TestRoundingMode(s32_f64, RN, (kMaxInt + 0.5), kMaxInt, true);
543 TestRoundingMode(s32_f64, RM, static_cast<double>(kMaxInt), kMaxInt);
    [all...]
  /art/runtime/interpreter/
interpreter.cc 64 static const int32_t kMaxInt = std::numeric_limits<int32_t>::max();
    [all...]
  /external/v8/src/arm/
assembler-arm.h     [all...]

Completed in 2302 milliseconds

1 2