Home
last modified time | relevance | path

Searched refs:HALF_FLOAT_MAX_BIASED_EXP (Results 1 – 3 of 3) sorted by relevance

/external/deqp/external/openglcts/modules/common/
DglcMisc.cpp39 const unsigned int HALF_FLOAT_MAX_BIASED_EXP = (0x1F << 10); variable
70 hf = (((GLhalf)sign) << 15) | (GLhalf)(HALF_FLOAT_MAX_BIASED_EXP) | (GLhalf)(mantissa >> 13); in floatToHalfFloat()
256 unsigned int exp = (unsigned int)(hf & HALF_FLOAT_MAX_BIASED_EXP); in halfFloatToFloat()
262 if (exp == HALF_FLOAT_MAX_BIASED_EXP) in halfFloatToFloat()
DglcInternalformatTests.cpp632 const unsigned int HALF_FLOAT_MAX_BIASED_EXP = (0x1F << 10); in floatToHalf() local
656 …return (GLhalf)((((GLhalf)sign) << 15) | (GLhalf)(HALF_FLOAT_MAX_BIASED_EXP) | (GLhalf)(mantissa >… in floatToHalf()
/external/deqp/external/openglcts/modules/gles31/
Des31cVertexAttribBindingTests.cpp244 const unsigned int HALF_FLOAT_MAX_BIASED_EXP = (0x1F << 10); in FloatToHalf() local
269 …hf = (GLhalf)((((GLhalf)sign) << 15) | (GLhalf)(HALF_FLOAT_MAX_BIASED_EXP) | (GLhalf)(mantissa >> … in FloatToHalf()