Searched refs:floatToHalf (Results 1 - 2 of 2) sorted by relevance

/external/deqp/modules/glshared/
H A DglsVertexArrayTests.hpp286 static Half create (float value) { Half h; h.m_value = floatToHalf(value); return h; }
294 inline Half& operator+= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) + halfToFloat(m_value)); return *this; }
295 inline Half& operator*= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) * halfToFloat(m_value)); return *this; }
296 inline Half& operator/= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) / halfToFloat(m_value)); return *this; }
297 inline Half& operator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat(m_value)); return *this; }
309 inline static deFloat16 floatToHalf (float f);
454 inline deFloat16 GLValue::Half::floatToHalf (float f) function in class:deqp::gls::GLValue::Half
H A DglsDrawTest.cpp453 static Half create (float value) { Half h; h.m_value = floatToHalf(value); return h; }
461 inline Half& operator+= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) + halfToFloat(m_value)); return *this; }
462 inline Half& operator*= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) * halfToFloat(m_value)); return *this; }
463 inline Half& operator/= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) / halfToFloat(m_value)); return *this; }
464 inline Half& operator-= (const Half& other) { m_value = floatToHalf(halfToFloat(other.getValue()) - halfToFloat(m_value)); return *this; }
476 inline static deFloat16 floatToHalf (float f);
547 inline deFloat16 GLValue::Half::floatToHalf (float f)

Completed in 61 milliseconds