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

  /external/v8/test/cctest/
test-utils.cc 60 CHECK_EQ(-1000000, FastD2IChecked(-1000000.0));
61 CHECK_EQ(-1, FastD2IChecked(-1.0));
62 CHECK_EQ(0, FastD2IChecked(0.0));
63 CHECK_EQ(1, FastD2IChecked(1.0));
64 CHECK_EQ(1000000, FastD2IChecked(1000000.0));
66 CHECK_EQ(-1000000, FastD2IChecked(-1000000.123));
67 CHECK_EQ(-1, FastD2IChecked(-1.234));
68 CHECK_EQ(0, FastD2IChecked(0.345));
69 CHECK_EQ(1, FastD2IChecked(1.234));
70 CHECK_EQ(1000000, FastD2IChecked(1000000.123))
    [all...]
  /external/v8/src/runtime/
runtime-numbers.cc 57 int f = FastD2IChecked(f_number);
74 int f = FastD2IChecked(f_number);
90 int f = FastD2IChecked(f_number);
runtime-strings.cc 301 start = FastD2IChecked(from_number);
302 end = FastD2IChecked(to_number);
    [all...]
  /external/v8/src/
conversions.h 45 inline int FastD2IChecked(double x) {
isolate.cc 352 int limit = FastD2IChecked(stack_trace_limit->Number());
    [all...]
factory.cc     [all...]

Completed in 69 milliseconds