HomeSort by relevance Sort by last modified time
    Searched refs:IsNAN (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/Support/
IsNAN.cpp 1 //===-- IsNAN.cpp ---------------------------------------------------------===//
10 // Platform-independent wrapper around C99 isnan().
22 using std::isnan;
25 #define isnan _isnan
27 # error "Don't know how to get isnan()"
31 int IsNAN(float f) { return isnan(f); }
32 int IsNAN(double d) { return isnan(d); }
Android.mk 37 IsNAN.cpp \
  /external/llvm/include/llvm/Support/
MathExtras.h 534 /// Platform-independent wrappers for the C99 isnan() function.
535 int IsNAN(float f);
536 int IsNAN(double d);
  /external/llvm/unittests/ADT/
APFloatTest.cpp     [all...]

Completed in 457 milliseconds