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 61 CHECK_EQ(-1000000, FastD2IChecked(-1000000.0));
62 CHECK_EQ(-1, FastD2IChecked(-1.0));
63 CHECK_EQ(0, FastD2IChecked(0.0));
64 CHECK_EQ(1, FastD2IChecked(1.0));
65 CHECK_EQ(1000000, FastD2IChecked(1000000.0));
67 CHECK_EQ(-1000000, FastD2IChecked(-1000000.123));
68 CHECK_EQ(-1, FastD2IChecked(-1.234));
69 CHECK_EQ(0, FastD2IChecked(0.345));
70 CHECK_EQ(1, FastD2IChecked(1.234));
71 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 298 start = FastD2IChecked(from_number);
299 end = FastD2IChecked(to_number);
    [all...]
  /external/v8/src/
conversions.h 45 inline int FastD2IChecked(double x) {
factory.cc     [all...]
isolate.cc 367 int limit = FastD2IChecked(stack_trace_limit->Number());
    [all...]

Completed in 2391 milliseconds