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

  /prebuilts/go/darwin-x86/src/math/cmplx/
isnan.go 9 // IsNaN returns true if either real(x) or imag(x) is NaN
11 func IsNaN(x complex128) bool {
15 case math.IsNaN(real(x)) || math.IsNaN(imag(x)):
  /prebuilts/go/linux-x86/src/math/cmplx/
isnan.go 9 // IsNaN returns true if either real(x) or imag(x) is NaN
11 func IsNaN(x complex128) bool {
15 case math.IsNaN(real(x)) || math.IsNaN(imag(x)):
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/number/
IsNaN.java 11 public final class IsNaN extends TypeSafeMatcher<Double> {
13 private IsNaN() { }
17 return Double.isNaN(item);
36 return new IsNaN();
  /prebuilts/go/darwin-x86/src/math/
bits.go 30 // IsNaN reports whether f is an IEEE 754 ``not-a-number'' value.
31 func IsNaN(f float64) (is bool) {
  /prebuilts/go/linux-x86/src/math/
bits.go 30 // IsNaN reports whether f is an IEEE 754 ``not-a-number'' value.
31 func IsNaN(f float64) (is bool) {
  /external/ImageMagick/MagickCore/
magick-type.h 152 The IsNaN test is for special floating point numbers of value Nan (not a
163 # define IsNaN(a) isnan(a)
166 # define IsNaN(a) _isnan(a)
168 # define IsNaN(a) (a != a)
  /external/v8/src/compiler/
node-matchers.h 165 bool IsNaN() const { return this->HasValue() && std::isnan(this->Value()); }
  /external/v8/src/debug/
debug.js 14 var IsNaN = global.isNaN;
mirrors.js 12 var IsNaN = global.isNaN;
    [all...]
  /external/v8/src/
objects-inl.h 590 bool Object::IsNaN() const {
591 return this->IsHeapNumber() && std::isnan(HeapNumber::cast(this)->value());
    [all...]
  /art/compiler/optimizing/
nodes.h     [all...]

Completed in 183 milliseconds