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

  /external/protobuf/src/google/protobuf/
generated_message_util.cc 46 double NaN() {
  /frameworks/compile/libbcc/runtime/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...]
divxc3_test.c 26 enum {zero, non_zero, inf, NaN, non_zero_nan};
36 return NaN;
40 return NaN;
46 return NaN;
71 if (classify(r) != NaN)
82 case NaN:
83 if (classify(r) != NaN)
87 if (classify(r) != NaN)
113 case NaN:
114 if (classify(r) != NaN)
    [all...]
muldc3_test.c 23 enum {zero, non_zero, inf, NaN, non_zero_nan};
33 return NaN;
37 return NaN;
43 return NaN;
76 if (classify(r) != NaN)
79 case NaN:
80 if (classify(r) != NaN)
84 if (classify(r) != NaN)
106 case NaN:
107 if (classify(r) != NaN)
    [all...]
mulsc3_test.c 23 enum {zero, non_zero, inf, NaN, non_zero_nan};
33 return NaN;
37 return NaN;
43 return NaN;
76 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...]
multc3_test.c 26 enum {zero, non_zero, inf, NaN, non_zero_nan};
36 return NaN;
40 return NaN;
46 return NaN;
79 if (classify(r) != NaN)
82 case NaN:
83 if (classify(r) != NaN)
87 if (classify(r) != NaN)
109 case NaN:
110 if (classify(r) != NaN)
    [all...]
mulxc3_test.c 26 enum {zero, non_zero, inf, NaN, non_zero_nan};
36 return NaN;
40 return NaN;
46 return NaN;
79 if (classify(r) != NaN)
82 case NaN:
83 if (classify(r) != NaN)
87 if (classify(r) != NaN)
109 case NaN:
110 if (classify(r) != NaN)
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSCell.cpp 33 #if defined NAN && defined INFINITY
35 extern const double NaN = NAN;
38 #else // !(defined NAN && defined INFINITY)
40 // The trick is to define the NaN and Inf globals with a different type than the declaration.
74 extern const double NaN = NaNInf.doubles.NaN_Double;
77 #endif // !(defined NAN && defined INFINITY)
  /libcore/luni/src/main/java/java/lang/
Double.java 58 * Constant for the Not-a-Number (NaN) value of the {@code double} type.
60 public static final double NaN = 0.0 / 0.0;
143 * <li>{@code Double.NaN} is equal to {@code Double.NaN} and it is greater
171 * {@code value}. All <em>Not-a-Number (NaN)</em> values are converted to a single NaN
179 * {@code value}. <em>Not-a-Number (NaN)</em> values are preserved (compare
200 * unequal, and {@code NaN}s compare equal by this method.
252 * Indicates whether this object is a <em>Not-a-Number (NaN)</em> value.
262 * Indicates whether the specified double is a <em>Not-a-Number (NaN)</em
    [all...]
Float.java 55 * Constant for the Not-a-Number (NaN) value of the {@code float} type.
57 public static final float NaN = 0.0f / 0.0f;
149 * <li>{@code Float.NaN} is equal to {@code Float.NaN} and it is greater
183 * unequal, and {@code NaN}s compare equal by this method.
199 * float {@code value}. All <em>Not-a-Number (NaN)</em> values are converted to a single NaN
207 * float {@code value}. <em>Not-a-Number (NaN)</em> values are preserved (compare
261 * Indicates whether this object is a <em>Not-a-Number (NaN)</em> value.
271 * Indicates whether the specified float is a <em>Not-a-Number (NaN)</em
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
LocaleData.java 83 public String NaN;
172 "NaN=" + NaN + "," +
269 if (overrides.NaN != null) {
270 NaN = overrides.NaN;
  /external/skia/src/animator/
SkAnimatorScript.cpp 64 propertyCallBack(NaN, (void*) this);
427 bool SkAnimatorScript::NaN(const char* token, size_t len, void* user, SkScriptValue* value) {
428 if (SK_LITERAL_STR_EQUAL("NaN", token, len) == false)
531 { "isNaN(Number.NaN)", SkType_Int, 1 DEFAULT_ANSWER DEFAULT_ANSWER },
532 { "isNaN(NaN)", SkType_Int, 1 DEFAULT_ANSWER DEFAULT_ANSWER },
  /libcore/luni/src/main/java/java/text/
DecimalFormatSymbols.java 54 private String infinity, NaN, currencySymbol, intlCurrencySymbol;
95 this.NaN = localeData.NaN;
184 NaN.equals(obj.NaN) &&
204 ",NaN=" + NaN +
305 * Returns the string which represents NaN.
307 * @return the symbol NaN as a string.
310 return NaN;
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.cpp 116 #define NaN std::numeric_limits<double>::quiet_NaN()
384 ASSERT((year >= minYear && year <= maxYear) || (product - year == static_cast<int>(NaN)));
584 return NaN;
586 return NaN;
591 return NaN;
593 return NaN;
595 return NaN;
600 return NaN;
602 return NaN;
604 return NaN;
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 730 milliseconds