Searched defs:IsInf (Results 1 – 10 of 10) sorted by relevance
46 int IsInf(float f) { return isinf(f); } in IsInf() function47 int IsInf(double d) { return isinf(d); } in IsInf() function
76 #define IsInf(x) (isinf)(x) // GNU C++/Intel ICC compiler on Linux macro78 #define IsInf(x) (!_finite(x)) macro80 …#define IsInf(x) (std::isinf)(x) // GNU C/C++ (and/or other compilers), just hope for… macro
374 inline bool IsInf(float value) { return std::isinf(value); } in IsInf() function376 inline bool IsInf(double value) { return std::isinf(value); } in IsInf() function378 inline bool IsInf(Float16 value) { in IsInf() function
205 bool IsInf(NativeT val) { in IsInf() function210 bool IsInf<half>(half val) { in IsInf() function
170 const static char IsInf[] = "isinf"; variable
89 XlaOp IsInf(XlaOp operand) { in IsInf() function
873 Value *IsInf = Builder.CreateFCmpOEQ( in EmitBuiltinExpr() local936 Value *IsInf = in EmitBuiltinExpr() local
7052 RValue<Int4> IsInf(RValue<Float4> x) in IsInf() function
6779 RValue<Int4> IsInf(RValue<Float4> x) in IsInf() function
19507 func IsInf(scope *Scope, x tf.Output) (y tf.Output) { func