Home | History | Annotate | Download | only in MagickCore

Lines Matching refs:half

110 static inline float HalfToSinglePrecision(const unsigned short half)
140 The IEEE 754 standard specifies half precision as having:
146 sign_bit=(unsigned int) ((half >> 15) & 0x00000001);
147 exponent=(unsigned int) ((half >> 10) & 0x0000001f);
148 significand=(unsigned int) (half & 0x000003ff);
712 half;
715 The IEEE 754 standard specifies half precision as having:
746 half=(unsigned short) (sign_bit | significand |
748 return(half);
773 half=(unsigned short) (sign_bit | (exponent << 10) |
775 return(half);