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

  /external/chromium_org/v8/test/cctest/
test-utils.cc 42 CHECK_EQ(-1000000, FastD2I(-1000000.0));
43 CHECK_EQ(-1, FastD2I(-1.0));
44 CHECK_EQ(0, FastD2I(0.0));
45 CHECK_EQ(1, FastD2I(1.0));
46 CHECK_EQ(1000000, FastD2I(1000000.0));
48 CHECK_EQ(-1000000, FastD2I(-1000000.123));
49 CHECK_EQ(-1, FastD2I(-1.234));
50 CHECK_EQ(0, FastD2I(0.345));
51 CHECK_EQ(1, FastD2I(1.234));
52 CHECK_EQ(1000000, FastD2I(1000000.123))
    [all...]
  /external/chromium_org/v8/src/
conversions.h 57 inline int FastD2I(double x) {
162 value <= Smi::kMaxValue && value == FastI2D(FastD2I(value));
173 value == FastI2D(FastD2I(value));
conversions-inl.h 42 // in this function as there is in FastD2I. Using lrint doesn't work
86 int32_t i = FastD2I(x);
types.cc 278 if (IsInt32Double(value)) return Lub(FastD2I(value));
    [all...]
factory.cc     [all...]
objects-inl.h 1085 int int_value = FastD2I(value);
    [all...]
objects.cc 182 if (FastI2D(FastD2I(num)) == num) {
183 *value = FastD2I(num);
    [all...]
runtime.cc     [all...]
  /external/chromium_org/v8/src/compiler/
machine-operator-reducer.cc 398 if (m.HasValue()) return ReplaceInt32(FastD2I(m.Value()));
  /external/chromium_org/v8/test/cctest/compiler/
test-js-typed-lowering.cc 269 double e = static_cast<double>(is_signed ? FastD2I(v) : FastD2UI(v));
    [all...]
  /external/chromium_org/v8/src/ic/
ic.cc     [all...]

Completed in 661 milliseconds