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

  /external/v8/test/cctest/
test-utils.cc 40 CHECK_EQ(-1000000, FastD2I(-1000000.0));
41 CHECK_EQ(-1, FastD2I(-1.0));
42 CHECK_EQ(0, FastD2I(0.0));
43 CHECK_EQ(1, FastD2I(1.0));
44 CHECK_EQ(1000000, FastD2I(1000000.0));
46 CHECK_EQ(-1000000, FastD2I(-1000000.123));
47 CHECK_EQ(-1, FastD2I(-1.234));
48 CHECK_EQ(0, FastD2I(0.345));
49 CHECK_EQ(1, FastD2I(1.234));
50 CHECK_EQ(1000000, FastD2I(1000000.123))
    [all...]
  /external/v8/src/
conversions.h 64 inline int FastD2I(double x) {
conversions-inl.h 59 // in this function as there is in FastD2I. Using lrint doesn't work
91 int32_t i = FastD2I(x);
elements.cc 653 int old_length = FastD2I(array->length()->Number());
    [all...]
deoptimizer.cc 909 : FastD2I(input_object->Number());
    [all...]
runtime.cc     [all...]
objects-inl.h 822 int int_value = FastD2I(value);
    [all...]
heap.cc     [all...]
api.cc     [all...]

Completed in 120 milliseconds