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

1 2 3 4 5 6

  /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/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/darwin-x86/test/
cmplxdivide.go 18 if imag(a) != imag(b) && !(math.IsNaN(imag(a)) && math.IsNaN(imag(b))) {
22 if real(a) != real(b) && !(math.IsNaN(real(a)) && math.IsNaN(real(b))) {
  /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)):
  /prebuilts/go/linux-x86/test/
cmplxdivide.go 18 if imag(a) != imag(b) && !(math.IsNaN(imag(a)) && math.IsNaN(imag(b))) {
22 if real(a) != real(b) && !(math.IsNaN(real(a)) && math.IsNaN(real(b))) {
  /prebuilts/go/darwin-x86/src/math/
nextafter.go 15 case IsNaN(float64(x)) || IsNaN(float64(y)): // special case
37 case IsNaN(x) || IsNaN(y): // special case
hypot.go 26 case IsNaN(p) || IsNaN(q):
mod.go 24 if y == 0 || IsInf(x, 0) || IsNaN(x) || IsNaN(y) {
dim.go 42 case IsNaN(x) || IsNaN(y):
69 case IsNaN(x) || IsNaN(y):
logb.go 20 case IsNaN(x):
37 case IsNaN(x):
frexp.go 23 case IsInf(f, 0) || IsNaN(f):
atan2.go 34 case IsNaN(y) || IsNaN(x):
  /prebuilts/go/linux-x86/src/math/
nextafter.go 15 case IsNaN(float64(x)) || IsNaN(float64(y)): // special case
37 case IsNaN(x) || IsNaN(y): // special case
hypot.go 26 case IsNaN(p) || IsNaN(q):
mod.go 24 if y == 0 || IsInf(x, 0) || IsNaN(x) || IsNaN(y) {
dim.go 42 case IsNaN(x) || IsNaN(y):
69 case IsNaN(x) || IsNaN(y):
logb.go 20 case IsNaN(x):
37 case IsNaN(x):
frexp.go 23 case IsInf(f, 0) || IsNaN(f):
  /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/hamcrest/hamcrest-library/src/test/java/org/hamcrest/number/
IsNanTest.java 7 import static org.hamcrest.number.IsNaN.notANumber;
  /external/protobuf/src/google/protobuf/stubs/
mathlimits.h 121 static bool IsNaN(const Type x);
160 static bool IsNaN(const Type /*x*/) { return false; } \
224 #ifdef WIN32 // Lacks built-in isnan() and isinf()
227 static bool IsNaN(const Type x) { return _isnan(x); } \
233 static bool IsFinite(const Type x) { return !isinf(x) && !isnan(x); } \
234 static bool IsNaN(const Type x) { return isnan(x); } \
  /prebuilts/go/darwin-x86/src/runtime/
sqrt_test.go 36 case math.IsNaN(a) && math.IsNaN(b):
  /prebuilts/go/linux-x86/src/runtime/
sqrt_test.go 36 case math.IsNaN(a) && math.IsNaN(b):
  /external/protobuf/src/google/protobuf/util/
field_comparator.cc 174 MathLimits<T>::IsNaN(value_1) && MathLimits<T>::IsNaN(value_2)) {
180 MathLimits<T>::IsNaN(value_1) && MathLimits<T>::IsNaN(value_2)) {
  /external/v8/testing/
gmock-support.h 85 MATCHER(IsNaN, std::string(negation ? "isn't" : "is") + " not a number") {
86 return std::isnan(arg);

Completed in 315 milliseconds

1 2 3 4 5 6