Home
last modified time | relevance | path

Searched defs:IsInf (Results 1 – 10 of 10) sorted by relevance

/external/eigen/unsupported/test/mpreal/
Dmpreal.h76 #define IsInf(x) (isinf)(x) // GNU C++/Intel ICC compiler on Linux macro
78 #define IsInf(x) (!_finite(x)) macro
80 …#define IsInf(x) (std::isinf)(x) // GNU C/C++ (and/or other compilers), just hope for… macro
/external/vixl/src/
Dutils-vixl.h402 inline bool IsInf(float value) { return std::isinf(value); } in IsInf() function
404 inline bool IsInf(double value) { return std::isinf(value); } in IsInf() function
406 inline bool IsInf(Float16 value) { in IsInf() function
/external/tensorflow/tensorflow/compiler/xla/
Dliteral_comparison.cc220 bool IsInf(NativeT val) { in IsInf() function
/external/tensorflow/tensorflow/python/lib/core/
Dbfloat16.cc991 struct IsInf { struct
992 bool operator()(bfloat16 a) { return std::isinf(static_cast<float>(a)); } in operator ()()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.cc121 XlaOp IsInf(XlaOp operand) { in IsInf() function
/external/clang/lib/CodeGen/
DCGBuiltin.cpp873 Value *IsInf = Builder.CreateFCmpOEQ( in EmitBuiltinExpr() local
936 Value *IsInf = in EmitBuiltinExpr() local
/external/llvm-project/llvm/lib/Analysis/
DInstructionSimplify.cpp4745 bool IsInf = match(V, m_Inf()); in simplifyFPOp() local
/external/llvm-project/clang/lib/CodeGen/
DCGBuiltin.cpp2949 Value *IsInf = Builder.CreateFCmpOEQ( in EmitBuiltinExpr() local
3027 Value *IsInf = in EmitBuiltinExpr() local
/external/swiftshader/src/Reactor/
DReactor.cpp4294 RValue<Int4> IsInf(RValue<Float4> x) in IsInf() function
/external/tensorflow/tensorflow/go/op/
Dwrappers.go25709 func IsInf(scope *Scope, x tf.Output) (y tf.Output) { func