Home
last modified time | relevance | path

Searched refs:deFloatAbs (Results 1 – 20 of 20) sorted by relevance

/external/deqp/framework/common/
DtcuCPUWarmup.cpp62 absoluteDeviations[i] = deFloatAbs((float)v[i] - median); in floatRelativeMedianAbsoluteDeviation()
DtcuVectorUtil.hpp41 inline float abs (float f) { return deFloatAbs(f); } in abs()
82 inline float length (float f) { return deFloatAbs(f); } in length()
83 inline float distance (float x, float y) { return deFloatAbs(x - y); } in distance()
DtcuTexLookupVerifier.cpp2122 const float mux = deFloatAbs(dudx); in computeLodBoundsFromDerivates()
2123 const float mvx = deFloatAbs(dvdx); in computeLodBoundsFromDerivates()
2124 const float mwx = deFloatAbs(dwdx); in computeLodBoundsFromDerivates()
2125 const float muy = deFloatAbs(dudy); in computeLodBoundsFromDerivates()
2126 const float mvy = deFloatAbs(dvdy); in computeLodBoundsFromDerivates()
2127 const float mwy = deFloatAbs(dwdy); in computeLodBoundsFromDerivates()
DtcuTexture.cpp1646 return (float)size * deFloatAbs(c - 2.0f * rint(0.5f * c)); in unnormalize()
2444 const float ax = deFloatAbs(x); in selectCubeFace()
2445 const float ay = deFloatAbs(y); in selectCubeFace()
2446 const float az = deFloatAbs(z); in selectCubeFace()
/external/deqp/modules/egl/
DteglNativeCoordMappingTests.cpp259 …return deFloatAbs(a.x() - b.x()) < threshold && deFloatAbs(a.y() - b.y()) < threshold && deFloatA… in compareColor()
/external/deqp/framework/delibs/debase/
DdeMath.h73 DE_INLINE float deFloatAbs (float x) { return (x >= 0.0f) ? x : -x; } in deFloatAbs() function
94 DE_INLINE float deFloatTrunc (float a) { return deFloatSign(a) * deFloatFloor(deFloatAbs(a));… in deFloatTrunc()
/external/deqp/external/vulkancts/modules/vulkan/geometry/
DvktGeometryInstancedRenderingTests.cpp523 const Vec4 color (deFloatAbs(x), deFloatAbs(y), 0.2f + 0.8f * modifier, 1.0f); in generateReferenceImage()
/external/deqp/framework/opengl/
DgluTextureTestUtil.cpp188 p = de::max(deFloatAbs(dudx), deFloatAbs(dudy)); in computeLodFromDerivates()
222 float mu = de::max(deFloatAbs(dudx), deFloatAbs(dudy)); in computeLodFromDerivates()
223 float mv = de::max(deFloatAbs(dvdx), deFloatAbs(dvdy)); in computeLodFromDerivates()
262 float mu = de::max(deFloatAbs(dudx), deFloatAbs(dudy)); in computeLodFromDerivates()
263 float mv = de::max(deFloatAbs(dvdx), deFloatAbs(dvdy)); in computeLodFromDerivates()
264 float mw = de::max(deFloatAbs(dwdx), deFloatAbs(dwdy)); in computeLodFromDerivates()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderTextureFunctionTests.cpp258 p = de::max(deFloatAbs(dudx), deFloatAbs(dudy)); in computeLodFromDerivates()
282 float mu = de::max(deFloatAbs(dudx), deFloatAbs(dudy)); in computeLodFromDerivates()
283 float mv = de::max(deFloatAbs(dvdx), deFloatAbs(dvdy)); in computeLodFromDerivates()
310 float mu = de::max(deFloatAbs(dudx), deFloatAbs(dudy)); in computeLodFromDerivates()
311 float mv = de::max(deFloatAbs(dvdx), deFloatAbs(dvdy)); in computeLodFromDerivates()
312 float mw = de::max(deFloatAbs(dwdx), deFloatAbs(dwdy)); in computeLodFromDerivates()
/external/deqp/modules/gles3/functional/
Des3fDitheringTests.cpp180 const bool useRoundingMargin = deFloatAbs(scaledInput - deFloatRound(scaledInput)) < 0.0001f; in checkColor()
Des3fShaderOperatorTests.cpp72 inline float abs (float v) { return deFloatAbs(v); } in abs()
/external/deqp/modules/gles2/functional/
Des2fDitheringTests.cpp180 const bool useRoundingMargin = deFloatAbs(scaledInput - deFloatRound(scaledInput)) < 0.0001f; in checkColor()
Des2fShaderOperatorTests.cpp64 inline float abs (float v) { return deFloatAbs(v); } in abs()
/external/deqp/modules/glshared/
DglsVertexArrayTests.cpp1586 …const T minQuadSize = T::fromFloat(deFloatAbs(max.template to<float>() - min.template to<float>())… in createQuads()
1614 …if ((deFloatAbs(x2.template to<float>() + z.template to<float>()) < minDiff.template to<float>()) … in createQuads()
1615 (deFloatAbs(y2.template to<float>() + w.template to<float>()) < minDiff.template to<float>())) in createQuads()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiImageClearingTests.cpp271 const bool result = deFloatAbs(depth - ref) <= threshold; in comparePixelToDepthClearValue()
/external/deqp/external/vulkancts/modules/vulkan/ssbo/
DvktSSBOLayoutCase.cpp1549 if (deFloatAbs(resVal - refVal) >= threshold) in compareComponents()
/external/deqp/modules/gles3/performance/
Des3pShaderCompilationCases.cpp198 absoluteDeviations[i] = deFloatAbs((float)v[i] - median); in vectorFloatMedianAbsoluteDeviation()
/external/deqp/modules/gles2/performance/
Des2pShaderCompilationCases.cpp198 absoluteDeviations[i] = deFloatAbs((float)v[i] - median); in vectorFloatMedianAbsoluteDeviation()
/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutCase.cpp1644 if (!(deFloatAbs(resVal - refVal) <= threshold)) in compareComponents()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmInstructionTests.cpp751 if (deFloatAbs((f1 - f0) / f0) > 0.02) in compareFRem()