Home
last modified time | relevance | path

Searched refs:deFloatMax (Results 1 – 6 of 6) sorted by relevance

/external/deqp/framework/randomshaders/
DrsgBuiltinFunctions.hpp203 return deFloatMax(0.1f, intersectionLen/valRangeLen); in getCompWeight()
289 inMin = deFloatAtanOver(deFloatMax(outMin, rangeMin)); in transformValueRange()
317 inMin = deFloatSin(deFloatMax(outMin, rangeMin)); in transformValueRange()
345 inMax = deFloatCos(deFloatMax(outMin, rangeMin)); in transformValueRange()
374 inMin = deFloatTan(deFloatMax(outMin, rangeMin)); in transformValueRange()
418 return deFloatMax(0.1f, intersectionLen/valRangeLen); in getCompWeight()
454 inMin = deFloatLog(deFloatMax(outMin, rangeMin)); in transformValueRange()
483 inMin = deFloatExp(deFloatMax(outMin, rangeMin)); in transformValueRange()
512 inMin = deFloatLog2(deFloatMax(outMin, rangeMin)); in transformValueRange()
541 inMin = deFloatExp2(deFloatMax(outMin, rangeMin)); in transformValueRange()
[all …]
DrsgExpression.cpp415 return deFloatMax(0.1f, 1.0f - rangeLength); in getWeight()
469 return deFloatMax(0.1f, 1.0f - (float)rangeLength/4.0f); in getWeight()
1046 float intersectionMin = deFloatMax(entryMin, readMin); in computeEntryReadWeight()
1102 return deFloatMax(weight, 0.01f); in computeEntryReadWeight()
/external/deqp/external/openglcts/modules/common/
DglcPackedPixelsTests.cpp1419 GLfloat red_c = deFloatMax(0, deFloatMin(sharedExpMax, red)); in unpack_UNSIGNED_INT_5_9_9_9_REV()
1420 GLfloat green_c = deFloatMax(0, deFloatMin(sharedExpMax, green)); in unpack_UNSIGNED_INT_5_9_9_9_REV()
1421 GLfloat blue_c = deFloatMax(0, deFloatMin(sharedExpMax, blue)); in unpack_UNSIGNED_INT_5_9_9_9_REV()
1423 GLfloat max_c = deFloatMax(deFloatMax(red_c, green_c), blue_c); in unpack_UNSIGNED_INT_5_9_9_9_REV()
1425 GLfloat exp_p = deFloatMax(-B - 1, deFloatFloor(deFloatLog2(max_c))) + 1 + B; in unpack_UNSIGNED_INT_5_9_9_9_REV()
2572 epsilon = deFloatMax(epsilon, 0.00001f); in compare()
2576 epsilon = deFloatMax(epsilon, 0.1f); in compare()
2580 inputValue = deFloatMax(deFloatMin(inputValue, 1.0f), 0.0f); in compare()
2582 inputValue = deFloatMax(deFloatMin(inputValue, 1.0f), -1.0f); in compare()
3088 return deFloatMax(static_cast<GLfloat>(value) / std::numeric_limits<GLbyte>::max(), -1.0f); in pack_BYTE()
[all …]
DglcShaderConstExprTests.cpp414 …(${T} (2.3), ${MT} (3.1))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_INT, { deFloatMax(2.3f, 3.1f) } }, in init()
DglcBlendEquationAdvancedTests.cpp325 return deFloatMax(deFloatMax(rgba[0], rgba[1]), rgba[2]); in MaxRGB()
/external/deqp/framework/delibs/debase/
DdeMath.h76 DE_INLINE float deFloatMax (float a, float b) { return (a >= b) ? a : b; } in deFloatMax() function