HomeSort by relevance Sort by last modified time
    Searched defs:IsInf (Results 1 - 11 of 11) sorted by null

  /external/swiftshader/third_party/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...]
  /prebuilts/go/darwin-x86/src/math/cmplx/
isinf.go 9 // IsInf returns true if either real(x) or imag(x) is an infinity.
10 func IsInf(x complex128) bool {
11 if math.IsInf(real(x), 0) || math.IsInf(imag(x), 0) {
  /prebuilts/go/linux-x86/src/math/cmplx/
isinf.go 9 // IsInf returns true if either real(x) or imag(x) is an infinity.
10 func IsInf(x complex128) bool {
11 if math.IsInf(real(x), 0) || math.IsInf(imag(x), 0) {
  /prebuilts/go/darwin-x86/src/math/
bits.go 39 // IsInf reports whether f is an infinity, according to sign.
40 // If sign > 0, IsInf reports whether f is positive infinity.
41 // If sign < 0, IsInf reports whether f is negative infinity.
42 // If sign == 0, IsInf reports whether f is either infinity.
43 func IsInf(f float64, sign int) bool {
  /prebuilts/go/linux-x86/src/math/
bits.go 39 // IsInf reports whether f is an infinity, according to sign.
40 // If sign > 0, IsInf reports whether f is positive infinity.
41 // If sign < 0, IsInf reports whether f is negative infinity.
42 // If sign == 0, IsInf reports whether f is either infinity.
43 func IsInf(f float64, sign int) bool {
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
ieee754.h 42 bool IsInf() const { return (u_ & kExponentMask) == kExponentMask && Significand() == 0; }
  /prebuilts/go/darwin-x86/src/math/big/
float.go 328 // IsInf reports whether x is +Inf or -Inf.
329 func (x *Float) IsInf() bool {
546 if math.IsInf(x, 0) {
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
float.go 328 // IsInf reports whether x is +Inf or -Inf.
329 func (x *Float) IsInf() bool {
546 if math.IsInf(x, 0) {
    [all...]
  /external/spirv-llvm/lib/SPIRV/
OCLUtil.h 170 const static char IsInf[] = "isinf";
545 _SPIRV_OP(isinf, IsInf)
  /external/eigen/unsupported/test/mpreal/
mpreal.h 76 #define IsInf(x) (isinf)(x) // GNU C++/Intel ICC compiler on Linux
78 #define IsInf(x) (!_finite(x))
80 #define IsInf(x) (std::isinf)(x) // GNU C/C++ (and/or other compilers), just hope for C99 conformance
486 friend bool (isinf) (const mpreal& v);
1701 inline bool (isinf) (const mpreal& op){ return (mpfr_inf_p (op.mpfr_srcptr()) != 0 ); } function in namespace:mpfr
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 1017 milliseconds