OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:halfToFloat
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/3rdparty/openexr/Half/
toFloat.cpp
62
halfToFloat
(unsigned short y)
151
cout << "{0x" << setfill ('0') << setw (8) <<
halfToFloat
(i) << "}, ";
/external/deqp/modules/glshared/
glsVertexArrayTests.hpp
325
inline Half operator+ (const Half& other) const { return create(
halfToFloat
(m_value) +
halfToFloat
(other.getValue())); }
326
inline Half operator* (const Half& other) const { return create(
halfToFloat
(m_value) *
halfToFloat
(other.getValue())); }
327
inline Half operator/ (const Half& other) const { return create(
halfToFloat
(m_value) /
halfToFloat
(other.getValue())); }
328
inline Half operator% (const Half& other) const { return create(deFloatMod(
halfToFloat
(m_value),
halfToFloat
(other.getValue()))); }
329
inline Half operator- (const Half& other) const { return create(
halfToFloat
(m_value) -
halfToFloat
(other.getValue()));
[
all
...]
glsDrawTest.cpp
442
inline Half operator+ (const Half& other) const { return create(
halfToFloat
(m_value) +
halfToFloat
(other.getValue())); }
443
inline Half operator* (const Half& other) const { return create(
halfToFloat
(m_value) *
halfToFloat
(other.getValue())); }
444
inline Half operator/ (const Half& other) const { return create(
halfToFloat
(m_value) /
halfToFloat
(other.getValue())); }
445
inline Half operator- (const Half& other) const { return create(
halfToFloat
(m_value) -
halfToFloat
(other.getValue())); }
447
inline Half& operator+= (const Half& other) { m_value = floatToHalf(
halfToFloat
(other.getValue()) +
halfToFloat
(m_value)); return *this;
[
all
...]
Completed in 704 milliseconds