HomeSort by relevance Sort by last modified time
    Searched refs:NaN (Results 1 - 25 of 430) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_CMPG_DOUBLE_VFP.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
TEMPLATE_CMPG_FLOAT_VFP.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
TEMPLATE_CMPL_DOUBLE_VFP.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
TEMPLATE_CMPL_FLOAT_VFP.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
  /dalvik/vm/compiler/template/mips/
TEMPLATE_CMPL_DOUBLE_VFP.S 4 %verify "left arg NaN"
5 %verify "right arg NaN"
11 * on what value we'd like to return when one of the operands is NaN.
21 * return {-1,1}; // one or both operands was NaN
TEMPLATE_CMPL_FLOAT_VFP.S 4 %verify "left arg NaN"
5 %verify "right arg NaN"
11 * on what value we'd like to return when one of the operands is NaN.
21 * return {-1,1}; // one or both operands was NaN
  /dalvik/vm/mterp/arm-vfp/
OP_CMPG_DOUBLE.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
OP_CMPG_FLOAT.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
OP_CMPL_DOUBLE.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
OP_CMPL_FLOAT.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
  /dalvik/vm/mterp/armv5te/
OP_CMPL_DOUBLE.S 4 %verify "left arg NaN"
5 %verify "right arg NaN"
11 * on what value we'd like to return when one of the operands is NaN.
37 @ Test for NaN with a second comparison. EABI forbids testing bit
47 $naninst @ r1<- 1 or -1 for NaN
OP_CMPL_FLOAT.S 4 %verify "left arg NaN"
5 %verify "right arg NaN"
11 * on what value we'd like to return when one of the operands is NaN.
21 * return {-1,1}; // one or both operands was NaN
26 * for NaN directly):
56 @ Test for NaN with a second comparison. EABI forbids testing bit
66 $naninst @ r1<- 1 or -1 for NaN
96 beq ${opcode}_nan @ no, must be NaN
112 $naninst @ r1<- 1 or -1 for NaN
  /dalvik/vm/mterp/mips/
OP_CMPL_DOUBLE.S 4 %verify "left arg NaN"
5 %verify "right arg NaN"
11 * on what value we'd like to return when one of the operands is NaN.
OP_CMPL_FLOAT.S 4 %verify "left arg NaN"
5 %verify "right arg NaN"
11 * on what value we'd like to return when one of the operands is NaN.
21 * return {-1,1}; // one or both operands was NaN
  /external/v8/test/mjsunit/
compare-nan.js 28 var a = [NaN, -1, 0, 1, 1.2, -7.9, true, false, 'foo', '0', 'NaN' ];
31 assertFalse(NaN == x, "NaN == " + x);
32 assertFalse(NaN === x, "NaN === " + x);
33 assertFalse(NaN < x, "NaN < " + x);
34 assertFalse(NaN > x, "NaN > " + x)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.ops/
complex_divide_complex.pass.cpp 52 assert(classify(r) == NaN);
60 case NaN:
61 assert(classify(r) == NaN);
64 assert(classify(r) == NaN);
80 case NaN:
81 assert(classify(r) == NaN);
84 assert(classify(r) == NaN);
98 assert(classify(r) == NaN);
100 case NaN:
101 assert(classify(r) == NaN);
    [all...]
complex_times_complex.pass.cpp 60 assert(classify(r) == NaN);
62 case NaN:
63 assert(classify(r) == NaN);
66 assert(classify(r) == NaN);
82 case NaN:
83 assert(classify(r) == NaN);
86 assert(classify(r) == NaN);
94 assert(classify(r) == NaN);
102 case NaN:
103 assert(classify(r) == NaN);
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.13.2-3.js 58 // If either operand is NaN, result is NaN
60 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 %= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 %= VAR2") );
61 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 %= VAR2; VAR1") );
62 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=0; VAR1 %= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=0; VAR1 %= VAR2") )
    [all...]
11.5.3.js 43 If either operand is NaN, the result is NaN.
45 If the dividend is an infinity, or the divisor is a zero, or both, the result is NaN.
48 In the remaining cases, where neither an infinity, nor a zero, nor NaN is involved, the floating-point remainder r
82 // if either operand is NaN, the result is NaN.
84 array[item++] = new TestCase( SECTION, "Number.NaN % Number.NaN", Number.NaN, Number.NaN % Number.NaN )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
StrictEquality-001.js 29 // 3. If x is NaN, return false
30 StrictEquality( NaN, NaN, false );
31 StrictEquality( NaN, 0, false );
33 // 4. If y is NaN, return false.
34 StrictEquality( 0, NaN, false );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.1.1.js 24 ECMA Section: 15.1.1.1 NaN
26 Description: The initial value of NaN is NaN.
35 var TITLE = "NaN";
47 array[array.length] = new TestCase( SECTION, "NaN", Number.NaN, NaN );
48 array[array.length] = new TestCase( SECTION, "this.NaN", Number.NaN, this.NaN );
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.11.js 27 - if x is NaN or y is NaN return NaN
56 array[item++] = new TestCase( SECTION, "Math.max(void 0, 1)", Number.NaN, Math.max( void 0, 1 ) );
57 array[item++] = new TestCase( SECTION, "Math.max(void 0, void 0)", Number.NaN, Math.max( void 0, void 0 ) );
64 array[item++] = new TestCase( SECTION, "Math.max(NaN, Infinity)", Number.NaN, Math.max(Number.NaN,Number.POSITIVE_INFINITY) );
65 array[item++] = new TestCase( SECTION, "Math.max(NaN, 0)", Number.NaN, Math.max(Number.NaN, 0) )
    [all...]
  /external/compiler-rt/test/Unit/
divdc3_test.c 23 enum {zero, non_zero, inf, NaN, non_zero_nan};
33 return NaN;
37 return NaN;
43 return NaN;
68 if (classify(r) != NaN)
79 case NaN:
80 if (classify(r) != NaN)
84 if (classify(r) != NaN)
110 case NaN:
111 if (classify(r) != NaN)
    [all...]
divsc3_test.c 23 enum {zero, non_zero, inf, NaN, non_zero_nan};
33 return NaN;
37 return NaN;
43 return NaN;
68 if (classify(r) != NaN)
79 case NaN:
80 if (classify(r) != NaN)
84 if (classify(r) != NaN)
110 case NaN:
111 if (classify(r) != NaN)
    [all...]
divtc3_test.c 26 enum {zero, non_zero, inf, NaN, non_zero_nan};
36 return NaN;
40 return NaN;
46 return NaN;
72 if (classify(r) != NaN)
83 case NaN:
84 if (classify(r) != NaN)
88 if (classify(r) != NaN)
114 case NaN:
115 if (classify(r) != NaN)
    [all...]

Completed in 316 milliseconds

1 2 3 4 5 6 7 8 91011>>