/ndk/sources/host-tools/ndk-stack/regex/ |
utils.h | 40 #define INFINITY (DUPMAX + 1)
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
mathcalls.h | 192 is +Infinity, -1 if it is -Infinity. */ 201 is +Infinity, -1 if it is -Infinity. */
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
FloatTest.java | 244 assertTrue("Infinity check failed", 256 assertTrue("Infinity check failed", Float.isInfinite(Float.POSITIVE_INFINITY) 397 doTestCompareRawBits("3.405E+38", 0x7f800000, "Infinity"); 398 doTestCompareRawBits("-3.405E+38", 0xff800000, "-Infinity"); 399 doTestCompareRawBits("3.41E+38", 0x7f800000, "Infinity"); 400 doTestCompareRawBits("-3.41E+38", 0xff800000, "-Infinity"); 401 doTestCompareRawBits("3.42E+38", 0x7f800000, "Infinity"); 402 doTestCompareRawBits("-3.42E+38", 0xff800000, "-Infinity"); 403 doTestCompareRawBits("1.0E+39", 0x7f800000, "Infinity"); 404 doTestCompareRawBits("-1.0E+39", 0xff800000, "-Infinity"); [all...] |
/bionic/libm/src/ |
s_cbrt.c | 57 * infinity. The RHS is always >= the LHS and has a maximum relative 65 * division rounds towards minus infinity; this is also efficient.
|
/external/llvm/include/llvm/CodeGen/PBQP/ |
HeuristicSolver.h | 505 const PBQPNum infinity = std::numeric_limits<PBQPNum>::infinity(); local 512 PBQPNum rowMin = infinity; 515 if (vCosts[c] != infinity && edgeCosts[r][c] < rowMin) 521 if (rowMin != infinity) { 530 PBQPNum colMin = infinity; 533 if (uCosts[r] != infinity && edgeCosts[r][c] < colMin) 539 if (colMin != infinity) {
|
/external/v8/test/mjsunit/ |
date.js | 186 d = new Date(1969, 12, 1, Infinity); 188 d = new Date(1969, 12, 1, -Infinity);
|
toint32.js | 32 assertEquals(0, toInt32(Infinity), "Inf"); 33 assertEquals(0, toInt32(-Infinity), "-Inf");
|
json.js | 55 valueOf: function() { return Infinity; }, 61 toString: function() { return Infinity; }, 74 toString: function() { return "Infinity"; }, 237 assertEquals("null", JSON.stringify(Infinity)); 238 assertEquals("null", JSON.stringify(-Infinity));
|
/external/webkit/LayoutTests/fast/js/resources/ |
getOwnPropertyDescriptor.js | 44 descriptorShouldBe("global", "'Infinity'", {writable: false, enumerable: false, configurable: false, value:"Infinity"});
|
/external/webkit/LayoutTests/fast/xpath/4XPath/Core/ |
test_numeric_expr-expected.txt | 4 PASS DOM.evaluate("(1 div 0) * (1 div 0)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is Infinity 5 PASS DOM.evaluate("(-1 div 0) * (-1 div 0)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is Infinity 6 PASS DOM.evaluate("(1 div 0) * (-1 div 0)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is -Infinity 11 PASS DOM.evaluate("1 div 0", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is Infinity 12 PASS DOM.evaluate("-1 div 0", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is -Infinity 46 PASS DOM.evaluate("(1 div 0) + (1 div 0)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is Infinity 116 PASS DOM.evaluate("'1' div '0'", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is Infinity 117 PASS DOM.evaluate("'-1' div '0'", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is -Infinity
|
/external/webkit/LayoutTests/http/tests/cookies/resources/ |
cookies-test-pre.js | 51 // -Infinity instead of Infinity
|
/external/webkit/Source/JavaScriptCore/qt/api/ |
qscriptconverter_p.h | 75 return QString::fromLatin1(value < 0 ? "-Infinity" : "Infinity");
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.4.3.js | 59 testcases[testcases.length] = new TestCase( SECTION, "typeof(Infinity)", "number", typeof(Number.POSITIVE_INFINITY) ); 60 testcases[testcases.length] = new TestCase( SECTION, "typeof(-Infinity)", "number", typeof(Number.NEGATIVE_INFINITY) );
|
11.4.6.js | 149 // StrNumericLiteral:::StrDecimalLiteral:::Infinity 151 array[item++] = new TestCase( SECTION, "+('Infinity')", Math.pow(10,10000), +("Infinity") ); 152 array[item++] = new TestCase( SECTION, "+('-Infinity')", -Math.pow(10,10000), +("-Infinity") ); 153 array[item++] = new TestCase( SECTION, "+('+Infinity')", Math.pow(10,10000), +("+Infinity") );
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.1-1.js | 62 array[item++] = new TestCase( SECTION, "typeof eval(new String('Infinity/-0')", "object", typeof eval(new String('Infinity/-0')) );
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.7-3.js | 122 position = Infinity; 159 if ( Math.abs(n) == 0 || Math.abs(n) == Infinity ) {
|
/external/webkit/Source/WebCore/bindings/js/ |
JSGeolocationCustom.cpp | 82 // If the value is positive infinity, there's nothing to do. 99 // If the value is positive infinity, clear maximumAge.
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8GeolocationCustom.cpp | 89 // If the value is positive infinity, there's nothing to do. 114 // If the value is positive infinity, clear maximumAge.
|
/frameworks/base/media/libeffects/lvm/lib/StereoWidening/src/ |
LVCS_Tables.c | 379 /* The Gain is represented as a Q3.13 number to give a range of +8 to -infinity */ 381 /* 0 is -infinity */
|
/libcore/luni/src/test/java/libcore/java/text/ |
OldDecimalFormatSymbolsTest.java | 132 * infinity = [U+221e] // INFINITY
|
/external/icu4c/i18n/ |
choicfmt.cpp | 57 #ifdef INFINITY 58 #undef INFINITY 60 #define INFINITY ((UChar)0x221E) 62 static const UChar gPositiveInfinity[] = {INFINITY, 0}; 63 static const UChar gNegativeInfinity[] = {MINUS, INFINITY, 0}; 471 result += INFINITY; 474 result += INFINITY;
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
9.3.1-1.js | 173 // StrNumericLiteral:::StrDecimalLiteral:::Infinity 175 array[item++] = new TestCase( SECTION, "Number('Infinity')", Math.pow(10,10000), Number("Infinity") ); 176 array[item++] = new TestCase( SECTION, "Number('-Infinity')", -Math.pow(10,10000), Number("-Infinity") ); 177 array[item++] = new TestCase( SECTION, "Number('+Infinity')", Math.pow(10,10000), Number("+Infinity") );
|
/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.cc | 170 if (value == numeric_limits<double>::infinity()) { 172 // a numeric literal that is too big for a double will become infinity. 174 } else if (value == -numeric_limits<double>::infinity()) { 178 // infinity * 0 = nan 186 if (value == numeric_limits<float>::infinity()) { 188 // a numeric literal that is too big for a double will become infinity. 190 } else if (value == -numeric_limits<float>::infinity()) { 194 // infinity - infinity = nan [all...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
NumberPrototype.cpp | 112 // Handle NaN and Infinity. 150 // The check above will return false for NaN or Infinity, these will be 186 // Handle NaN and Infinity.
|
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
LegacyCACFLayerTreeHost.cpp | 265 CFTimeInterval timeToNextRender = numeric_limits<CFTimeInterval>::infinity(); 316 // If timeToNextRender is not infinity, it means animations are running, so queue up to render again 317 if (timeToNextRender != numeric_limits<CFTimeInterval>::infinity())
|