HomeSort by relevance Sort by last modified time
    Searched refs:kMinValue (Results 1 - 9 of 9) sorted by null

  /external/v8/test/cctest/
test-macro-assembler-x64.cc 97 Smi::kMinValue, static_cast<int64_t>(Smi::kMinValue) - 1
103 bool is_in_range = number >= Smi::kMinValue && number <= Smi::kMaxValue;
152 TestMoveSmi(masm, &exit, 12, Smi::FromInt(Smi::kMinValue));
234 TestSmiCompare(masm, &exit, 0x80, 0, Smi::kMinValue);
235 TestSmiCompare(masm, &exit, 0x90, Smi::kMinValue, 0);
238 TestSmiCompare(masm, &exit, 0xC0, -1, Smi::kMinValue);
239 TestSmiCompare(masm, &exit, 0xD0, Smi::kMinValue, -1);
242 TestSmiCompare(masm, &exit, 0x100, Smi::kMinValue, Smi::kMinValue);
    [all...]
test-heap.cc 124 value = Heap::NumberFromInt32(Smi::kMinValue);
127 CHECK_EQ(Smi::kMinValue, Smi::cast(value)->value());
136 value = Heap::NumberFromInt32(Smi::kMinValue - 1);
139 CHECK_EQ(static_cast<double>(Smi::kMinValue - 1), value->Number());
195 CHECK(Smi::FromInt(Smi::kMinValue)->IsSmi());
  /external/v8/src/mips/
constants-mips.h 82 static const int32_t kMinValue = 0x80000000;
simulator-mips.cc 966 exceptions[kIntegerUnderflow] = rs < (Registers::kMinValue - rt);
979 exceptions[kIntegerUnderflow] = rs < (Registers::kMinValue + rt);
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 674 // Test if result is zero or Smi::kMinValue.
682 // If the result is zero or Smi::kMinValue, negation failed to create a smi.
869 if (constant->value() == Smi::kMinValue) {
900 if (constant->value() == Smi::kMinValue) {
934 // We need to rule out dividing Smi::kMinValue by -1, since that would
998 // Test for the edge case of dividing Smi::kMinValue by -1 (will overflow).
1000 cmpl(rax, Immediate(Smi::kMinValue));
    [all...]
codegen-x64.cc     [all...]
  /external/v8/src/
objects.h 732 static const int kMinValue = (-1 << (kSmiValueSize - 1));
733 static const int kMaxValue = -(kMinValue + 1);
    [all...]
objects-inl.h 872 bool in_range = (value >= kMinValue) && (value <= kMaxValue);
    [all...]
  /external/v8/src/ia32/
codegen-ia32.cc     [all...]

Completed in 91 milliseconds