OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsInf
(Results
1 - 7
of
7
) sorted by null
/external/llvm/lib/Support/
IsInf.cpp
1
//===--
IsInf
.cpp - Platform-independent wrapper around C99
isinf
() -------===//
10
// Platform-independent wrapper around C99
isinf
()
22
using std::
isinf
;
27
static int
isinf
(double x) { return !finite(x) && x==x; }
30
#define
isinf
(X) (!_finite(X))
32
// GCC's fixincludes seems to be removing the
isinf
() declaration from the
35
static int
isinf
(double x) { return !finite(x) && x==x; }
39
static int
isinf
(double x) { return ((x) == INFINITY) || ((x) == -INFINITY); }
41
# error "Don't know how to get
isinf
()"
[
all
...]
Android.mk
34
IsInf
.cpp \
/external/llvm/include/llvm/Support/
MathExtras.h
528
/// Platform-independent wrappers for the C99
isinf
() function.
529
int
IsInf
(float f);
530
int
IsInf
(double d);
/external/ceres-solver/google3/
jet_traits.h
48
static bool
IsInf
(const Type x) { return
isinf
(x); }
/external/eigen/unsupported/test/mpreal/
mpreal.h
75
#define
IsInf
(x)
isinf
(x) // Intel ICC compiler on Linux
78
#define
IsInf
(x) (!_finite(x))
81
#define
IsInf
(x) std::
isinf
(x) // GNU C/C++
84
#define
IsInf
(x) std::
isinf
(x) // Unknown compiler, just hope for C99 conformance
463
friend bool
isinf
(const mpreal& v);
1387
inline bool
isinf
(const mpreal& v){ return (mpfr_inf_p(v.mp) != 0); }
function in namespace:mpfr
[
all
...]
/external/clang/lib/CodeGen/
CGBuiltin.cpp
504
//
isinf
(x) --> fabs(x) == infinity
508
V = Builder.CreateFCmpOEQ(V, ConstantFP::getInfinity(V->getType()),"
isinf
");
513
// isinf_sign(x) ->
isinf
(x) ? (signbit(x) ? -1 : 1) : 0
522
Builder.CreateFCmpULT(Abs, ConstantFP::getInfinity(V->getType()),"
isinf
");
540
Builder.CreateFCmpUNE(Abs, ConstantFP::getInfinity(V->getType()),"
isinf
");
578
Value *
IsInf
=
580
"
isinf
");
583
Builder.CreateCondBr(
IsInf
, End, NotInf);
[
all
...]
/external/llvm/unittests/ADT/
APFloatTest.cpp
[
all
...]
Completed in 1727 milliseconds