HomeSort by relevance Sort by last modified time
    Searched refs:NaN (Results 251 - 275 of 410) sorted by null

<<11121314151617

  /cts/tools/dx-tests/src/dxc/junit/opcodes/f2l/
Test_f2l.java 74 * @title Argument = NaN
78 assertEquals(0l, t.run(Float.NaN));
  /cts/tools/dx-tests/src/dxc/junit/opcodes/fcmpg/
Test_fcmpg.java 50 * @title Arguments = Float.NaN, Float.MAX_VALUE
54 assertEquals(1, t.run(Float.NaN, Float.MAX_VALUE));
  /cts/tools/dx-tests/src/dxc/junit/opcodes/fcmpl/
Test_fcmpl.java 50 * @title Arguments = Float.NaN, Float.MAX_VALUE
54 assertEquals(-1, t.run(Float.NaN, Float.MAX_VALUE));
  /cts/tools/vm-tests/src/dot/junit/opcodes/cmpg_double/
Test_cmpg_double.java 62 * @title Arguments = Double.NaN, Double.MAX_VALUE
66 assertEquals(1, t.run(Double.NaN, Double.MAX_VALUE));
  /cts/tools/vm-tests/src/dot/junit/opcodes/cmpg_float/
Test_cmpg_float.java 62 * @title Arguments = Float.NaN, Float.MAX_VALUE
66 assertEquals(1, t.run(Float.NaN, Float.MAX_VALUE));
  /cts/tools/vm-tests/src/dot/junit/opcodes/cmpl_double/
Test_cmpl_double.java 62 * @title Arguments = Double.NaN, Double.MAX_VALUE
66 assertEquals(-1, t.run(Double.NaN, Double.MAX_VALUE));
  /cts/tools/vm-tests/src/dot/junit/opcodes/cmpl_float/
Test_cmpl_float.java 62 * @title Arguments = Float.NaN, Float.MAX_VALUE
66 assertEquals(-1, t.run(Float.NaN, Float.MAX_VALUE));
  /cts/tools/vm-tests/src/dot/junit/opcodes/double_to_int/
Test_double_to_int.java 87 * @title Argument = NaN
91 assertEquals(0, t.run(Double.NaN));
  /cts/tools/vm-tests/src/dot/junit/opcodes/double_to_long/
Test_double_to_long.java 86 * @title Argument = NaN
90 assertEquals(0l, t.run(Double.NaN));
  /cts/tools/vm-tests/src/dot/junit/opcodes/float_to_int/
Test_float_to_int.java 88 * @title Argument = NaN
92 assertEquals(0, t.run(Float.NaN));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/cmpg_double/
Test_cmpg_double.java 50 * @title Arguments = Double.NaN, Double.MAX_VALUE
54 assertEquals(1, t.run(Double.NaN, Double.MAX_VALUE));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/cmpg_float/
Test_cmpg_float.java 50 * @title Arguments = Float.NaN, Float.MAX_VALUE
54 assertEquals(1, t.run(Float.NaN, Float.MAX_VALUE));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/cmpl_double/
Test_cmpl_double.java 50 * @title Arguments = Double.NaN, Double.MAX_VALUE
54 assertEquals(-1, t.run(Double.NaN, Double.MAX_VALUE));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/cmpl_float/
Test_cmpl_float.java 50 * @title Arguments = Float.NaN, Float.MAX_VALUE
54 assertEquals(-1, t.run(Float.NaN, Float.MAX_VALUE));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/double_to_int/
Test_double_to_int.java 75 * @title Argument = NaN
79 assertEquals(0, t.run(Double.NaN));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/double_to_long/
Test_double_to_long.java 74 * @title Argument = NaN
78 assertEquals(0l, t.run(Double.NaN));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_int/
Test_float_to_int.java 75 * @title Argument = NaN
79 assertEquals(0, t.run(Float.NaN));
  /dalvik/vm/mterp/armv5te/
OP_DOUBLE_TO_INT.S 2 /* EABI appears to have Java-style conversions of +inf/-inf/NaN */
45 beq 1f @ return zero for NaN
OP_DOUBLE_TO_LONG.S 44 moveq r1, #0 @ return zero for NaN
  /dalvik/vm/mterp/armv6t2/
OP_DOUBLE_TO_INT.S 2 /* EABI appears to have Java-style conversions of +inf/-inf/NaN */
45 beq 1f @ return zero for NaN
OP_DOUBLE_TO_LONG.S 44 moveq r1, #0 @ return zero for NaN
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForFSB.java 945 * @return A double value representation of the string, or return Double.NaN
950 return Double.NaN;
965 if (i == m_length) return Double.NaN;
977 return Double.NaN;
983 return Double.NaN;
  /external/v8/test/mjsunit/
touint32.js 36 assertEquals(0, ToUInt32(NaN), "NaN");
  /external/webkit/Source/JavaScriptCore/runtime/
JSNotAnObject.cpp 61 return NaN;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.2.js 53 array[item++] = new TestCase( SECTION, "(new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString()", "NaN,Infinity,-Infinity", (new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString() );

Completed in 198 milliseconds

<<11121314151617