/external/v8/test/cctest/ |
H A D | test-macro-assembler-x64.cc | 115 Smi::kMinValue, static_cast<int64_t>(Smi::kMinValue) - 1 121 bool is_in_range = number >= Smi::kMinValue && number <= Smi::kMaxValue; 171 TestMoveSmi(masm, &exit, 12, Smi::FromInt(Smi::kMinValue)); 254 TestSmiCompare(masm, &exit, 0x80, 0, Smi::kMinValue); 255 TestSmiCompare(masm, &exit, 0x90, Smi::kMinValue, 0); 258 TestSmiCompare(masm, &exit, 0xC0, -1, Smi::kMinValue); 259 TestSmiCompare(masm, &exit, 0xD0, Smi::kMinValue, -1); 262 TestSmiCompare(masm, &exit, 0x100, Smi::kMinValue, Smi::kMinValue); [all...] |
H A D | test-api.cc | 1170 i::Smi::kMinValue, i::Smi::kMaxValue
|
/external/webp/src/enc/ |
H A D | filter.c | 111 static const double kMinValue = 1.e-10; // minimal threshold variable 165 return (fden != 0.) ? fnum / fden : kMinValue; 175 if (SSE > kMinValue) return SSE; 177 return kMinValue;
|
/external/v8/test/cctest/compiler/ |
H A D | codegen-tester.cc | 435 RunSmiConstant(Smi::kMinValue); 436 RunSmiConstant(Smi::kMinValue + 1); 458 RunNumberConstant(Smi::kMinValue); 459 RunNumberConstant(Smi::kMinValue + 1);
|
H A D | test-simplified-lowering.cc | 75 if (expected <= Smi::kMinValue) return;
|
/external/v8/src/ |
H A D | conversions-inl.h | 102 return !IsMinusZero(value) && value >= Smi::kMinValue &&
|
H A D | objects-inl.h | 7783 new_count &= ~Smi::kMinValue; 7802 if (value > Smi::kMaxValue) value |= Smi::kMinValue; 7803 if (value < Smi::kMinValue) value &= ~Smi::kMinValue; 7813 if (value > Smi::kMaxValue) value |= Smi::kMinValue; 7814 if (value < Smi::kMinValue) value &= ~Smi::kMinValue;
|
H A D | objects.h | 1455 DCHECK_EQ(result, value >= kMinValue && value <= kMaxValue); 1465 static const int kMinValue = member in class:v8::internal::Smi 1467 static const int kMaxValue = -(kMinValue + 1);
|
/external/v8/src/mips/ |
H A D | simulator-mips.cc | 3658 if (rs() >= (Registers::kMinValue - rt())) { 3675 if (rs() >= (Registers::kMinValue + rt())) { 4176 BranchCompactHelper(rs < Registers::kMinValue - rt, 16); 4193 if (rs >= Registers::kMinValue - se_imm16) { 4210 BranchCompactHelper(rs >= Registers::kMinValue - rt, 16);
|
H A D | constants-mips.h | 214 static const int32_t kMinValue = 0x80000000; member in class:v8::internal::Registers
|
/external/v8/src/crankshaft/ |
H A D | hydrogen-instructions.cc | 136 if (result < Smi::kMinValue) { 138 return Smi::kMinValue; 1153 // In case of Smi representation, clamp Math.abs(Smi::kMinValue) to 1666 result = new(zone) Range(Smi::kMinValue, Smi::kMaxValue); 1727 ? new(zone) Range(Smi::kMinValue, Smi::kMaxValue)
|
H A D | hydrogen-instructions.h | 234 return lower_ >= Smi::kMinValue && upper_ <= Smi::kMaxValue; 237 lower_ = Max(lower_, Smi::kMinValue);
|
/external/v8/src/mips64/ |
H A D | constants-mips64.h | 177 static const int64_t kMinValue = 0x8000000000000000l; member in class:v8::internal::Registers
|
H A D | simulator-mips64.cc | 3741 if (rs() < (Registers::kMinValue - rt())) { 3765 if (rs() < (Registers::kMinValue + rt())) { 4448 if (rs >= Registers::kMinValue - se_imm16) {
|
/external/v8/test/cctest/heap/ |
H A D | test-heap.cc | 166 value = factory->NewNumberFromInt(Smi::kMinValue); 169 CHECK_EQ(Smi::kMinValue, Handle<Smi>::cast(value)->value()); 178 value = factory->NewNumberFromInt(Smi::kMinValue - 1); 181 CHECK_EQ(static_cast<double>(Smi::kMinValue - 1), value->Number()); 431 CHECK(Smi::FromInt(Smi::kMinValue)->IsSmi());
|
/external/v8/src/x64/ |
H A D | macro-assembler-x64.cc | 1703 if (constant->value() == Smi::kMinValue) { 1750 if (constant->value() == Smi::kMinValue) { 1774 // Test if result is zero or Smi::kMinValue. 1782 // If the result is zero or Smi::kMinValue, negation failed to create a smi. 2000 // We need to rule out dividing Smi::kMinValue by -1, since that would 2008 testl(rax, Immediate(~Smi::kMinValue)); 2065 // Test for the edge case of dividing Smi::kMinValue by -1 (will overflow). 2067 cmpl(rax, Immediate(Smi::kMinValue));
|
/external/v8/src/crankshaft/arm64/ |
H A D | lithium-arm64.cc | 1104 STATIC_ASSERT((kMinInt == Smi::kMinValue) &&
|
/external/v8/src/crankshaft/mips64/ |
H A D | lithium-mips64.cc | 1838 STATIC_ASSERT((kMinInt == Smi::kMinValue) &&
|