HomeSort by relevance Sort by last modified time
    Searched full:infinity (Results 276 - 300 of 681) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.1.js 68 array[item++] = new TestCase( SECTION, "String( Number.POSITIVE_INFINITY )", "Infinity", String( Number.POSITIVE_INFINITY ) );
69 array[item++] = new TestCase( SECTION, "String( Number.NEGATIVE_INFINITY )", "-Infinity", String( Number.NEGATIVE_INFINITY ) );
15.5.4.7-1.js 177 position = Infinity;
214 if ( Math.abs(n) == 0 || Math.abs(n) == Infinity ) {
  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.cpp 353 result = "Infinity";
357 result = "-Infinity";
  /external/oprofile/libpp/
format_output.cpp 12 /* older glibc has C99 INFINITY in _GNU_SOURCE */
312 if (f.diff == -INFINITY)
323 if (f.diff == -INFINITY)
331 if (f.diff == -INFINITY)
358 if (f.diff == INFINITY)
360 else if (f.diff == -INFINITY)
  /frameworks/base/core/tests/coretests/src/android/util/
JsonReaderTest.java 187 + "\"Infinity\","
188 + "\"-Infinity\""
215 + "Infinity,"
216 + "INFINITY,"
217 + "-Infinity"
236 assertEquals("INFINITY", reader.nextString());
  /external/valgrind/main/VEX/priv/
guest_generic_x87.c 57 S 7FFF 10------0 infinity
72 S 7FF 0------0 infinity
168 /* If the exponent is 7FF, this is either an Infinity, a SNaN or
177 /* Produce an appropriately signed infinity:
216 /* It's not a zero, denormal, infinity or nan. So it must be a
266 /* If the exponent is 7FFF, this is either an Infinity, a SNaN or
283 /* Produce an appropriately signed infinity:
332 /* It's not a zero, denormal, infinity or nan. So it must be a
336 /* It's too big for a double. Construct an infinity. */
442 S 7FF 0------0 infinity
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DoubleTest.java 361 assertTrue("Infinity check failed", Double.isInfinite(Double.NEGATIVE_INFINITY)
453 doTestCompareRawBits("1.2e309", rawBitsFor1_2e0To309[309], "Infinity");
486 doTestCompareRawBits("0.2e309", 0x7ff0000000000000L, "Infinity");
513 0x7ff0000000000000L, "Infinity");
516 0xfff0000000000000L, "-Infinity");
    [all...]
  /external/opencv/cv/src/
cvstereogc.cpp 44 #undef INFINITY
45 #define INFINITY 10000
739 delta = IS_BLOCKED(alpha, d) ? INFINITY : 0;
746 E += icvAddTerm( var, var1, 0, INFINITY, 0, 0, ebuf, nedges );
756 E0a = IS_BLOCKED(d, alpha) ? INFINITY : 0;
757 Ea0 = IS_BLOCKED(-d1, alpha) ? INFINITY : 0;
805 E += icvAddTerm( var, var1, 0, INFINITY, 0, 0, ebuf, nedges );
  /external/stlport/src/
num_put_float.cpp 121 // Tests for infinity and NaN differ on different OSs. We encapsulate
620 if (_Stl_is_inf(x)) { // Infinity
635 if (x == limits::infinity() || x == -limits::infinity()) {
767 //If numeric_limits support is correct we use the exposed values to detect NaN and infinity:
770 (x == limits::infinity() || x == -limits::infinity())) {
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 121 // Tests for infinity and NaN differ on different OSs. We encapsulate
619 if (_Stl_is_inf(x)) { // Infinity
634 if (x == limits::infinity() || x == -limits::infinity()) {
766 //If numeric_limits support is correct we use the exposed values to detect NaN and infinity:
769 (x == limits::infinity() || x == -limits::infinity())) {
    [all...]
  /external/icu4c/test/cintltst/
putiltst.c 90 doAssert(uprv_trunc(uprv_getInfinity()), uprv_getInfinity(), "uprv_trunc(uprv_getInfinity()) failed. with parameter=Infinity");
359 /* infinity and real*/
363 /*test infinity and real*/
366 /*test infinity and nan*/
370 /* test infinity and zero */
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.3-2.js 51 Infinity
79 array[item++] = new TestCase( SECTION, "parseFloat(' Infinity')", Number.POSITIVE_INFINITY, parseFloat("Infinity") );
80 // array[item++] = new TestCase( SECTION, "parseFloat(Infinity)", Number.POSITIVE_INFINITY, parseFloat(Infinity) );
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DecimalFormatSymbolsTest.java 348 assertTrue("Returned incorrect Infinity symbol",
490 assertTrue("Returned incorrect Infinity symbol",
638 * infinity = [?][U+221e]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
string-weight.h 60 // String semiring: (longest_common_prefix/suffix, ., Infinity, Epsilon)
322 return strm << "Infinity";
338 if (s == "Infinity") {
  /external/skia/include/core/
SkGeometry.h 24 +infinity in the X direction. e.g. XRay(3,5) is the half-line
25 (3,5)....(infinity, 5)
  /external/webkit/LayoutTests/fast/xpath/py-dom-xpath/
functions.html 81 test(doc, doc, 'string(1 div 0)', 'Infinity');
82 test(doc, doc, 'string(-1 div 0)', '-Infinity');
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.9.1.js 77 array[item++] = new TestCase( SECTION, "NaN == Infinity", false, Number.NaN == Number.POSITIVE_INFINITY );
78 array[item++] = new TestCase( SECTION, "Infinity == NaN", false, Number.POSITIVE_INFINITY == Number.NaN );
11.9.2.js 76 array[item++] = new TestCase( SECTION, "NaN != Infinity", true, Number.NaN != Number.POSITIVE_INFINITY );
77 array[item++] = new TestCase( SECTION, "Infinity != NaN", true, Number.POSITIVE_INFINITY != Number.NaN );
11.9.3.js 76 array[item++] = new TestCase( SECTION, "NaN == Infinity", false, Number.NaN == Number.POSITIVE_INFINITY );
77 array[item++] = new TestCase( SECTION, "Infinity == NaN", false, Number.POSITIVE_INFINITY == Number.NaN );
  /external/webkit/Source/WebCore/bindings/v8/
V8Binding.h 116 // value cannot be converted to an integer or converts to nan or to an infinity.
127 // value cannot be converted to an unsigned integer or converts to nan or to an infinity.
  /external/v8/test/test262/
test262.status 98 # BUG: Global.Infinity is a data property with default attribute values
106 # for properties on built-ins (Global.Infinity)
244 # 'desc' is +Infinity (15.4.5.1 step 3.c)
248 # 'desc' is -Infinity (15.4.5.1 step 3.c)
268 # 'desc' is a string containing +Infinity (15.4.5.1 step 3.c)
272 # 'desc' is a string containing -Infinity (15.4.5.1 step 3.c)
    [all...]
  /external/icu4c/i18n/
decNumber.c 87 /* Infinity or NaN). */
554 if (decBiStr(c, "infinity", "INFINITY")
    [all...]
  /frameworks/compile/libbcc/runtime/test/Unit/ppc/
qadd_test.c 25 #define INFINITY __builtin_inf()
35 { INFINITY, 0.0, 0.0, 0.0, INFINITY, 0.0 },
36 { -INFINITY, 0.0, 0.0, 0.0, -INFINITY, 0.0 },
37 { INFINITY, 0.0, -0.0, 0.0, INFINITY, 0.0 },
38 { -INFINITY, 0.0, -0.0, 0.0, -INFINITY, 0.0 },
39 { INFINITY, 0.0, 1.0, 0.0, INFINITY, 0.0 }
    [all...]
qsub_test.c 25 #define INFINITY __builtin_inf()
35 { INFINITY, 0.0, -0.0, 0.0, INFINITY, 0.0 },
36 { -INFINITY, 0.0, -0.0, 0.0, -INFINITY, 0.0 },
37 { INFINITY, 0.0, 0.0, 0.0, INFINITY, 0.0 },
38 { -INFINITY, 0.0, 0.0, 0.0, -INFINITY, 0.0 },
39 { INFINITY, 0.0, -1.0, 0.0, INFINITY, 0.0 }
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECPublicKeySpec_ImplTest.java 109 * <code>w</code> is point at infinity<br>

Completed in 589 milliseconds

<<11121314151617181920>>