Lines Matching defs:sign
808 int32 sign = (halfValue >> 15) & 0x00000001;
820 return (uint32) (sign << 31);
850 return (uint32) ((sign << 31) | ((0x1eL + 127 - 15) << 23) | (0x3ffL << 13));
870 // Assemble sign, exponent and mantissa.
872 return (uint32) ((sign << 31) | (exponent << 23) | mantissa);
881 int32 sign = (i >> 16) & 0x00008000;
893 return (uint16)sign;
911 // Assemble the half from sign, exponent (zero) and mantissa.
913 return (uint16)(sign | (mantissa >> 13));
924 // infinity with the same sign as f.
926 return (uint16)(sign | 0x7c00);
934 // the sign bit and the 10 leftmost bits of the
937 sign | 0x7c00 | (mantissa >> 13));
965 return (uint16)(sign | 0x7c00); // infinity with the same sign as f.
968 // Assemble the half from sign, exponent and mantissa.
970 return (uint16)(sign | (exponent << 10) | (mantissa >> 13));
979 int32 sign = (input [0] >> 7) & 0x01;
991 return (uint32) (sign << 31);
1021 return (uint32) ((sign << 31) | ((0x7eL + 128 - 64) << 23) | (0xffffL << 7));
1041 // Assemble sign, exponent and mantissa.
1043 return (uint32) ((sign << 31) | (exponent << 23) | mantissa);