Searched refs:halfValue (Results 1 – 4 of 4) sorted by relevance
805 inline uint32 DNG_HalfToFloat (uint16 halfValue) in DNG_HalfToFloat() argument808 int32 sign = (halfValue >> 15) & 0x00000001; in DNG_HalfToFloat()809 int32 exponent = (halfValue >> 10) & 0x0000001f; in DNG_HalfToFloat()810 int32 mantissa = halfValue & 0x000003ff; in DNG_HalfToFloat()
170 float convert_half_to_float( unsigned short halfValue );
157 float convert_half_to_float( unsigned short halfValue ); in read_image_pixel()
914 float convert_half_to_float( unsigned short halfValue ) in convert_half_to_float() argument920 int sign = ( halfValue >> 15 ) & 0x0001; in convert_half_to_float()921 int exponent = ( halfValue >> 10 ) & 0x001f; in convert_half_to_float()922 int mantissa = ( halfValue ) & 0x03ff; in convert_half_to_float()