Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/framework/delibs/debase/
DdeMath.h73 DE_INLINE deUint32 deFloatBitsToUint32(float x) in deFloatBitsToUint32() function
89 return x == 0 && (deFloatBitsToUint32(x) >> 31) == 0; in deFloatIsPositiveZero()
99 return x == 0 && (deFloatBitsToUint32(x) >> 31) != 0; in deFloatIsNegativeZero()
109 deUint32 e = (deFloatBitsToUint32(x) & 0x7f800000u) >> 23; in deFloatIsIEEENaN()
110 deUint32 m = (deFloatBitsToUint32(x) & 0x007fffffu); in deFloatIsIEEENaN()
131 return deFloatIsIEEENaN(x) && (deFloatBitsToUint32(x) & (1u << 22)) == 0; in deFloatIsSignalingNaN()
141 return deFloatIsIEEENaN(x) && (deFloatBitsToUint32(x) & (1u << 22)) != 0; in deFloatIsQuietNaN()