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

1 2 3 4 5

  /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/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/darwin-x86/src/math/
dim.go 33 case IsNaN(x) || IsNaN(y):
60 case IsNaN(x) || IsNaN(y):
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) {
floor.go 16 if x == 0 || IsNaN(x) || IsInf(x, 0) {
51 if x == 0 || IsNaN(x) || IsInf(x, 0) {
logb.go 20 case IsNaN(x):
37 case IsNaN(x):
frexp.go 23 case IsInf(f, 0) || IsNaN(f):
  /prebuilts/go/linux-x86/src/math/
dim.go 33 case IsNaN(x) || IsNaN(y):
60 case IsNaN(x) || IsNaN(y):
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) {
floor.go 16 if x == 0 || IsNaN(x) || IsInf(x, 0) {
51 if x == 0 || IsNaN(x) || IsInf(x, 0) {
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/darwin-x86/test/
cmplxdivide.go 31 case cmplx.IsNaN(a) && cmplx.IsNaN(b):
  /prebuilts/go/linux-x86/src/runtime/
sqrt_test.go 36 case math.IsNaN(a) && math.IsNaN(b):
  /prebuilts/go/linux-x86/test/
cmplxdivide.go 31 case cmplx.IsNaN(a) && cmplx.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)) {

Completed in 598 milliseconds

1 2 3 4 5