Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Support/
DIsInf.cpp46 int IsInf(float f) { return isinf(f); } in IsInf() function
47 int IsInf(double d) { return isinf(d); } in IsInf() function
/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.h374 inline bool IsInf(float value) { return std::isinf(value); } in IsInf() function
376 inline bool IsInf(double value) { return std::isinf(value); } in IsInf() function
378 inline bool IsInf(Float16 value) { in IsInf() function
/external/tensorflow/tensorflow/compiler/xla/
Dliteral_comparison.cc205 bool IsInf(NativeT val) { in IsInf() function
210 bool IsInf<half>(half val) { in IsInf() function
/external/spirv-llvm/lib/SPIRV/
DOCLUtil.h170 const static char IsInf[] = "isinf"; variable
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.cc89 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/swiftshader/src/Reactor/
DSubzeroReactor.cpp7052 RValue<Int4> IsInf(RValue<Float4> x) in IsInf() function
DLLVMReactor.cpp6779 RValue<Int4> IsInf(RValue<Float4> x) in IsInf() function
/external/tensorflow/tensorflow/go/op/
Dwrappers.go19507 func IsInf(scope *Scope, x tf.Output) (y tf.Output) { func