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

1 2 3 4 5 6

  /external/ceres-solver/include/ceres/
fpclassify.h 32 // do not collide with macros. For example, "isnan" in C99 is a macro and hence
52 inline bool IsNaN (double x) { return _isnan(x) != 0; }
61 // On Android, when using the STLPort, the C++ isnan and isnormal functions
63 inline bool IsNaN (double x) { return isnan(x); }
72 return !isnan(x) && !IsInfinite(x);
80 inline bool IsNaN (double x) { return std::isnan(x); }
  /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):
atan2.go 34 case IsNaN(y) || IsNaN(x):
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/
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)
  /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/v8/testing/
gmock-support.h 85 MATCHER(IsNaN, std::string(negation ? "isn't" : "is") + " not a number") {
86 return std::isnan(arg);

Completed in 4539 milliseconds

1 2 3 4 5 6