Searched refs:kMaxInt (Results 1 - 21 of 21) sorted by relevance

/external/v8/test/cctest/
H A Dtest-assembler-arm.cc517 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/v8/src/
H A Ddateparser.h64 static const int kNone = kMaxInt;
81 // Read a string of digits as an unsigned number (cap just below kMaxInt).
85 for (n = 0; IsAsciiDigit() && n < kMaxInt / 10 - 1; Next()) {
H A Dglobals.h190 const int kMaxInt = 0x7FFFFFFF; member in namespace:v8::internal
191 const int kMinInt = -kMaxInt - 1;
H A Dtype-info.h131 if (value >= kMinInt && value <= kMaxInt &&
H A Dplatform.h373 LOCAL_STORAGE_KEY_MAX_VALUE = kMaxInt
H A Dhydrogen-instructions.cc73 if (result > kMaxInt) {
75 return kMaxInt;
156 upper_ = kMaxInt;
801 Range* range = new Range(kMinInt, kMaxInt);
H A Dlithium-allocator.h133 return LifetimePosition(kMaxInt);
H A Dframes.h150 ID_MAX_VALUE = kMaxInt,
H A Ddebug.cc225 int distance = kMaxInt;
248 int distance = kMaxInt;
H A Dspaces.h1790 static const int kEnd = kMaxInt;
H A Dhydrogen-instructions.h202 upper_(kMaxInt),
216 Range* CopyClearUpper() const { return new Range(lower_, kMaxInt); }
224 bool IsMostGeneric() const { return lower_ == kMinInt && upper_ == kMaxInt; }
H A Dast.h1801 static const int kInfinity = kMaxInt;
H A Dlithium-allocator.cc164 spill_start_index_(kMaxInt) {
H A Dobjects.h3236 FLAGS_MAX_VALUE = kMaxInt
H A Dobjects.cc4600 if (length < 0) length = kMaxInt - offset;
6292 int distance = kMaxInt;
H A Dheap.cc139 min_in_mutator_(kMaxInt),
H A Druntime.cc11240 int distance = kMaxInt;
/external/v8/src/ia32/
H A Dic-ia32.cc1387 // The offset should have initial value (kMaxInt - 1), cleared value
1389 ASSERT(*reinterpret_cast<int*>(offset_address) == kMaxInt - 1 ||
1397 // The offset should have initial value (kMaxInt), cleared value
1399 ASSERT(*reinterpret_cast<int*>(offset_address) == kMaxInt ||
/external/v8/src/x64/
H A Dic-x64.cc1366 // The offset should have initial value (kMaxInt - 1), cleared value
1368 ASSERT(*reinterpret_cast<int*>(offset_address) == kMaxInt - 1 ||
1376 // The offset should have initial value (kMaxInt), cleared value
1378 ASSERT(*reinterpret_cast<int*>(offset_address) == kMaxInt ||
H A Dcode-stubs-x64.cc1946 STATIC_ASSERT(FixedArray::kMaxLength < kMaxInt - FixedArray::kLengthOffset);
/external/v8/src/arm/
H A Dsimulator-arm.cc2840 double max_int = static_cast<double>(kMaxInt);
2884 return (val < 0) ? kMinInt : kMaxInt;

Completed in 4512 milliseconds