OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
29
IsNAN
.cpp \
CMakeLists.txt
31
IsNAN
.cpp
/external/llvm/include/llvm/Support/
MathExtras.h
393
/// Platform-independent wrappers for the C99
isnan
() function.
394
int
IsNAN
(float f);
395
int
IsNAN
(double d);
Completed in 607 milliseconds