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

  /external/protobuf/src/google/protobuf/stubs/
mathutil.h 44 bool IsNan(T value) {
48 inline bool IsNan(float value) {
52 return isnan(value);
56 inline bool IsNan(double value) {
60 return isnan(value);
83 if (value == T(0) || ::google::protobuf::internal::IsNan<T>(value)) {
102 return MathLimits<T>::IsNaN(x) || x > y ? x : y;
  /external/deqp-deps/glslang/glslang/MachineIndependent/
intermOut.cpp 63 bool IsNan(double x) {
73 return std::isnan(x);
460 case EOpIsNan: out.debug << "isnan"; break;
    [all...]
  /external/icu/icu4c/source/i18n/
double-conversion-ieee.h 157 bool IsNan() const {
335 bool IsNan() const {
  /external/tensorflow/tensorflow/compiler/xla/
literal_comparison.cc 216 float IsNan(NativeT value) {
217 return std::isnan(value);
221 float IsNan(half value) {
222 return IsNan<float>(static_cast<float>(value));
378 } else if (IsNan(expected) || IsNan(actual)) {
379 if ((!error_.relaxed_nans && IsNan(expected) != IsNan(actual)) ||
380 (error_.relaxed_nans && !IsNan(expected) && IsNan(actual)))
    [all...]
  /external/spirv-llvm/lib/SPIRV/
OCLUtil.h 168 const static char IsNan[] = "isnan";
546 _SPIRV_OP(isnan, IsNan)
  /external/swiftshader/src/Reactor/
LLVMReactor.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/tensorflow/tensorflow/go/op/
wrappers.go     [all...]

Completed in 1950 milliseconds