Searched refs:V8_INFINITY (Results 1 – 17 of 17) sorted by relevance
/external/v8/src/compiler/ |
D | operation-typer.cc | 23 infinity_ = Type::Constant(V8_INFINITY, zone); in OperationTyper() 24 minus_infinity_ = Type::Constant(-V8_INFINITY, zone); in OperationTyper() 103 new_min = -V8_INFINITY; in WeakenRange() 117 new_max = V8_INFINITY; in WeakenRange() 144 double x = +V8_INFINITY; in array_min() 159 double x = -V8_INFINITY; in array_max() 245 if (((lhs_min == -V8_INFINITY || lhs_max == V8_INFINITY) && in MultiplyRanger() 247 ((rhs_min == -V8_INFINITY || rhs_max == V8_INFINITY) && in MultiplyRanger() 706 (rhs.Min() == -V8_INFINITY || rhs.Max() == V8_INFINITY)) || in NumberMultiply() 708 (lhs.Min() == -V8_INFINITY || lhs.Max() == V8_INFINITY)); in NumberMultiply() [all …]
|
D | type-cache.h | 69 Type const kInteger = CreateRange(-V8_INFINITY, V8_INFINITY); 74 Type const kPositiveInteger = CreateRange(0.0, V8_INFINITY);
|
D | types.cc | 61 double min = +V8_INFINITY; in Min() 79 double max = -V8_INFINITY; in Max() 351 {kOtherNumber, kPlainNumber, -V8_INFINITY}, 436 return +V8_INFINITY; in Max()
|
D | typer.cc | 785 increment_type.Min() == -V8_INFINITY || in TypeInductionVariablePhi() 786 increment_type.Max() == +V8_INFINITY) { in TypeInductionVariablePhi() 804 double min = -V8_INFINITY; in TypeInductionVariablePhi() 805 double max = V8_INFINITY; in TypeInductionVariablePhi() 862 min = -V8_INFINITY; in TypeInductionVariablePhi() 863 max = +V8_INFINITY; in TypeInductionVariablePhi() 896 -V8_INFINITY, in InductionVariablePhiTypeIsPrefixedPoint() 908 +V8_INFINITY, typer_->zone()); in InductionVariablePhiTypeIsPrefixedPoint() 1378 new_min = -V8_INFINITY; in Weaken() 1392 new_max = V8_INFINITY; in Weaken()
|
D | machine-operator-reducer.cc | 183 Float64Constant(-V8_INFINITY)), in Float64PowHalf() 185 return d.Phi(MachineRepresentation::kFloat64, Float64Constant(V8_INFINITY), in Float64PowHalf()
|
D | js-call-reducer.cc | 4443 jsgraph()->Constant(-V8_INFINITY)); in ReduceJSCall() 4446 jsgraph()->Constant(V8_INFINITY)); in ReduceJSCall()
|
/external/v8/src/numbers/ |
D | strtod.cc | 350 if (guess == V8_INFINITY) { in BignumStrtod() 405 if (exponent + trimmed.length() - 1 >= kMaxDecimalPower) return V8_INFINITY; in Strtod()
|
D | conversions.cc | 645 return (sign == NEGATIVE) ? -V8_INFINITY : V8_INFINITY; in InternalStringToDouble()
|
/external/v8/src/builtins/ |
D | string-repeat.tq | 58 if (n == V8_INFINITY || n < 0.0) goto InvalidCount;
|
D | math.tq | 150 let result: float64 = V8_INFINITY; 412 if (max == V8_INFINITY) { 413 return V8_INFINITY;
|
D | base.tq | 212 const V8_INFINITY: constexpr float64 generates 'V8_INFINITY'; 213 const MINUS_V8_INFINITY: constexpr float64 generates '-V8_INFINITY'; 1627 if (value == V8_INFINITY) { 1630 return value == (Convert<float64>(0) - V8_INFINITY);
|
D | number.tq | 153 } else if (x == V8_INFINITY) {
|
/external/v8/src/execution/ |
D | futex-emulation.cc | 317 bool use_timeout = rel_timeout_ms != V8_INFINITY; in Wait() 340 ? V8_INFINITY in WaitTimeoutInMs()
|
/external/v8/src/objects/ |
D | bigint.cc | 909 if (y == V8_INFINITY) return ComparisonResult::kLessThan; in CompareToDouble() 910 if (y == -V8_INFINITY) return ComparisonResult::kGreaterThan; in CompareToDouble() 1089 if (x_bitlength > 1024) return x->sign() ? -V8_INFINITY : V8_INFINITY; in ToDouble() 1127 return x->sign() ? -V8_INFINITY : V8_INFINITY; in ToDouble()
|
/external/v8/src/heap/ |
D | setup-heap-internal.cc | 685 *factory->NewHeapNumber<AllocationType::kReadOnly>(V8_INFINITY)); in CreateInitialObjects() 687 *factory->NewHeapNumber<AllocationType::kReadOnly>(-V8_INFINITY)); in CreateInitialObjects()
|
/external/v8/src/common/ |
D | globals.h | 21 #define V8_INFINITY std::numeric_limits<double>::infinity() macro
|
/external/v8/src/init/ |
D | bootstrapper.cc | 1854 factory->NewNumber(-V8_INFINITY)); in InitializeGlobal()
|