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

  /external/deqp-deps/glslang/glslang/MachineIndependent/
Constant.cpp 56 bool isNan(double x)
665 newConstArray[i].setBConst(isNan(unionArray[i].getDConst()));
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 788 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "isnan", shaderType)
797 m_spec.source = "out0 = isnan(in0);";
811 const bool isNan = rnd.getFloat() > 0.3f;
812 const bool isInf = !isNan && rnd.getFloat() > 0.4f;
814 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu;
818 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan);
837 const deUint32 ref = tcu::Float32(in0).isNaN() ? 1u : 0u;
893 const bool isNan = !isInf && rnd.getFloat() > 0.4f;
895 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 866 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "isnan", shaderType)
875 m_spec.source = "out0 = isnan(in0);";
889 const bool isNan = rnd.getFloat() > 0.3f;
890 const bool isInf = !isNan && rnd.getFloat() > 0.4f;
892 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu;
896 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan);
915 const bool ref = tcu::Float32(in0).isNaN();
931 const bool ref = tcu::Float32(in0).isNaN();
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/util/
hex_float.h 43 static bool isNan(const Float16& val) {
64 // You must also add a isNan function that returns true if
74 static bool isNan(float f) { return std::isnan(f); }
94 static bool isNan(double f) { return std::isnan(f); }
116 static bool isNan(Float16 f) { return Float16::isNan(f); }
177 bool isNan() { return FloatProxyTraits<T>::isNan(getAsFloat());
    [all...]
  /external/deqp-deps/glslang/SPIRV/
hex_float.h 28 bool isnan(double f) function in namespace:std
47 static bool isNan(const Float16& val) {
68 // You must also add a isNan function that returns true if
78 static bool isNan(float f) { return std::isnan(f); }
90 static bool isNan(double f) { return std::isnan(f); }
102 static bool isNan(Float16 f) { return Float16::isNan(f); }
144 bool isNan() { return FloatProxyTraits<T>::isNan(getAsFloat());
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/util/
hex_float.h 43 static bool isNan(const Float16& val) {
64 // You must also add a isNan function that returns true if
74 static bool isNan(float f) { return std::isnan(f); }
94 static bool isNan(double f) { return std::isnan(f); }
116 static bool isNan(Float16 f) { return Float16::isNan(f); }
177 bool isNan() { return FloatProxyTraits<T>::isNan(getAsFloat());
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderCommonFunctionTests.cpp     [all...]

Completed in 737 milliseconds