HomeSort by relevance Sort by last modified time
    Searched refs:V8_INFINITY (Results 1 - 25 of 40) sorted by null

1 2

  /external/v8/test/cctest/
test-double.cc 106 CHECK(Double(V8_INFINITY).IsSpecial());
107 CHECK(Double(-V8_INFINITY).IsSpecial());
129 CHECK(Double(V8_INFINITY).IsInfinite());
130 CHECK(Double(-V8_INFINITY).IsInfinite());
143 CHECK_EQ(1, Double(V8_INFINITY).Sign());
144 CHECK_EQ(-1, Double(-V8_INFINITY).Sign());
228 CHECK_EQ(-1.7976931348623157e308, Double(-V8_INFINITY).NextDouble());
229 CHECK_EQ(V8_INFINITY,
test-strtod.cc 203 // It would be more readable to put the literals (and not V8_INFINITY) on the
206 CHECK_EQ(V8_INFINITY, StrtodChar("1", 309));
210 CHECK_EQ(V8_INFINITY, StrtodChar("18", 307));
212 CHECK_EQ(V8_INFINITY, StrtodChar("0000001", 309));
216 CHECK_EQ(V8_INFINITY, StrtodChar("0000000018", 307));
218 CHECK_EQ(V8_INFINITY, StrtodChar("1000000", 303));
222 CHECK_EQ(V8_INFINITY, StrtodChar("180000000", 300));
224 CHECK_EQ(V8_INFINITY, StrtodChar("00000001000000", 303));
228 CHECK_EQ(V8_INFINITY, StrtodChar("00000000180000000", 300));
232 CHECK_EQ(V8_INFINITY, StrtodChar("17976931348623159", 292))
    [all...]
types-fuzz.h 94 integers.push_back(isolate->factory()->NewNumber(-V8_INFINITY));
95 integers.push_back(isolate->factory()->NewNumber(+V8_INFINITY));
105 Integer = Type::Range(-V8_INFINITY, +V8_INFINITY, zone);
test-types.cc 346 CHECK(T.Constant(fac->NewNumber(V8_INFINITY))->Is(T.PlainNumber));
347 CHECK(!T.Constant(fac->NewNumber(V8_INFINITY))->Is(T.Integral32));
348 CHECK(T.Constant(fac->NewNumber(-V8_INFINITY))->Is(T.PlainNumber));
349 CHECK(!T.Constant(fac->NewNumber(-V8_INFINITY))->Is(T.Integral32));
    [all...]
  /external/v8/src/compiler/
operation-typer.cc 80 new_min = -V8_INFINITY;
94 new_max = V8_INFINITY;
129 double x = +V8_INFINITY;
144 double x = -V8_INFINITY;
255 (rmin == -V8_INFINITY || rmax == +V8_INFINITY)) ||
257 (lmin == -V8_INFINITY || lmax == +V8_INFINITY));
344 ((lhs->Min() == -V8_INFINITY || lhs->Max() == +V8_INFINITY) &
    [all...]
js-builtin-reducer.cc 293 return Replace(jsgraph()->Constant(-V8_INFINITY));
320 return Replace(jsgraph()->Constant(V8_INFINITY));
typer.cc     [all...]
  /external/v8/test/cctest/compiler/
value-helper.h 227 V8_INFINITY,
228 -V8_INFINITY,
292 static const double values[] = {-nan, -V8_INFINITY * -0.0,
293 -V8_INFINITY * 0.0, V8_INFINITY * -0.0,
294 V8_INFINITY * 0.0, nan};
function-tester.h 181 Handle<Object> minus_infinity() { return Val(-V8_INFINITY); }
test-run-jsops.cc 59 T.CheckCall(V8_INFINITY, 8, 0);
60 T.CheckCall(-V8_INFINITY, -8, 0);
test-branch-combine.cc 414 double inf = V8_INFINITY;
test-js-constant-cache.cc 463 T.Float64Constant(V8_INFINITY),
codegen-tester.cc 144 double inf = V8_INFINITY;
  /external/v8/test/unittests/compiler/
typer-unittest.cc 32 integers.push_back(-V8_INFINITY);
33 integers.push_back(+V8_INFINITY);
106 if (min == +V8_INFINITY) return +V8_INFINITY;
107 if (max == -V8_INFINITY) return -V8_INFINITY;
108 if (min == -V8_INFINITY && max == +V8_INFINITY) {
js-typed-lowering-unittest.cc 37 -V8_INFINITY, -4.23878e+275, -5.82632e+265, -6.60355e+220, -6.26172e+212,
54 1.79769e+308, V8_INFINITY};
60 const double kIntegerValues[] = {-V8_INFINITY, INT_MIN, -1000.0, -42.0,
62 1000.0, INT_MAX, UINT_MAX, V8_INFINITY};
268 Node* input = Parameter(Type::Range(1, V8_INFINITY, zone()), 0);
    [all...]
simplified-operator-reducer-unittest.cc 61 -V8_INFINITY, -6.52696e+290, -1.05768e+290, -5.34203e+268, -1.01997e+268,
78 V8_INFINITY};
js-builtin-reducer-unittest.cc 615 EXPECT_THAT(r.replacement(), IsNumberConstant(-V8_INFINITY));
693 EXPECT_THAT(r.replacement(), IsNumberConstant(V8_INFINITY));
    [all...]
  /external/v8/src/
type-cache.h 50 Type* const kInteger = CreateRange(-V8_INFINITY, V8_INFINITY);
55 Type* const kPositiveInteger = CreateRange(0.0, V8_INFINITY);
globals.h 24 # define V8_INFINITY std::numeric_limits<double>::infinity()
26 # define V8_INFINITY HUGE_VAL
28 #define V8_INFINITY (__builtin_inff())
30 # define V8_INFINITY INFINITY
    [all...]
strtod.cc 354 if (guess == V8_INFINITY) {
410 if (exponent + trimmed.length() - 1 >= kMaxDecimalPower) return V8_INFINITY;
futex-emulation.cc 96 bool use_timeout = rel_timeout_ms != V8_INFINITY;
conversions-inl.h 12 #include "src/globals.h" // Required for V8_INFINITY
558 return (sign == NEGATIVE) ? -V8_INFINITY : V8_INFINITY;
types.cc 80 double min = +V8_INFINITY;
96 double max = -V8_INFINITY;
309 {kOtherNumber, kPlainNumber, -V8_INFINITY},
394 return +V8_INFINITY;
    [all...]
assembler.cc     [all...]
  /external/v8/src/runtime/
runtime-futex.cc 30 CHECK(timeout == V8_INFINITY || !std::isnan(timeout));

Completed in 2498 milliseconds

1 2