Searched refs:kMinValue (Results 1 - 18 of 18) sorted by relevance

/external/v8/test/cctest/
H A Dtest-macro-assembler-x64.cc115 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 Dtest-api.cc1170 i::Smi::kMinValue, i::Smi::kMaxValue
/external/webp/src/enc/
H A Dfilter.c111 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 Dcodegen-tester.cc435 RunSmiConstant(Smi::kMinValue);
436 RunSmiConstant(Smi::kMinValue + 1);
458 RunNumberConstant(Smi::kMinValue);
459 RunNumberConstant(Smi::kMinValue + 1);
H A Dtest-simplified-lowering.cc75 if (expected <= Smi::kMinValue) return;
/external/v8/src/
H A Dconversions-inl.h102 return !IsMinusZero(value) && value >= Smi::kMinValue &&
H A Dobjects-inl.h7783 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 Dobjects.h1455 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 Dsimulator-mips.cc3658 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 Dconstants-mips.h214 static const int32_t kMinValue = 0x80000000; member in class:v8::internal::Registers
/external/v8/src/crankshaft/
H A Dhydrogen-instructions.cc136 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 Dhydrogen-instructions.h234 return lower_ >= Smi::kMinValue && upper_ <= Smi::kMaxValue;
237 lower_ = Max(lower_, Smi::kMinValue);
/external/v8/src/mips64/
H A Dconstants-mips64.h177 static const int64_t kMinValue = 0x8000000000000000l; member in class:v8::internal::Registers
H A Dsimulator-mips64.cc3741 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 Dtest-heap.cc166 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 Dmacro-assembler-x64.cc1703 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 Dlithium-arm64.cc1104 STATIC_ASSERT((kMinInt == Smi::kMinValue) &&
/external/v8/src/crankshaft/mips64/
H A Dlithium-mips64.cc1838 STATIC_ASSERT((kMinInt == Smi::kMinValue) &&

Completed in 534 milliseconds