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

  /external/webkit/Source/JavaScriptCore/runtime/
NumberConstructor.cpp 86 return jsNumber(-Inf);
91 return jsNumber(Inf);
JSCell.cpp 36 extern const double Inf = INFINITY;
40 // The trick is to define the NaN and Inf globals with a different type than the declaration.
75 extern const double Inf = NaNInf.doubles.Inf_Double;
JSGlobalObjectFunctions.cpp 182 if (radixMultiplier == Inf) {
184 number = Inf;
204 if (radixMultiplier == Inf) {
206 number = Inf;
341 return Inf;
348 return Inf;
355 return -Inf;
MathObject.cpp 173 double result = -Inf;
189 double result = +Inf;
JSValue.h 38 extern const double Inf;
UString.cpp 55 extern const double Inf;
JSGlobalObject.cpp 271 GlobalPropertyInfo(Identifier(exec, "Infinity"), jsNumber(Inf), DontEnum | DontDelete | ReadOnly),
  /external/webkit/Source/WebCore/xml/
XPathFunctions.cpp 55 static const int Inf = -1;
267 : m_min(Inf), m_max(Inf)
283 if (m_min == Inf && m_max == Inf)
286 if (m_min == Inf)
289 if (m_max == Inf)
685 { "concat", { &createFunConcat, Interval(2, Interval::Inf) } },
  /external/v8/test/mjsunit/
toint32.js 32 assertEquals(0, toInt32(Infinity), "Inf");
33 assertEquals(0, toInt32(-Infinity), "-Inf");
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 900 Value *Inf = ConstantFP::getInfinity(CI->getType());
907 Value *Sel = B.CreateSelect(FCmp, Inf, FAbs);
    [all...]

Completed in 321 milliseconds