Lines Matching refs:m64
98 unsigned m64, l64;
102 FPU_get_user(m64, 1 + (unsigned long __user *)dfloat);
106 negative = (m64 & 0x80000000) ? SIGN_Negative : SIGN_Positive;
107 exp = ((m64 & 0x7ff00000) >> 20) - DOUBLE_Ebias + EXTENDED_Ebias;
108 m64 &= 0xfffff;
111 if ((m64 == 0) && (l64 == 0)) {
120 loaded_data->sigh = (m64 << 11) | 0x80000000;
127 if ((m64 == 0) && (l64 == 0)) {
134 loaded_data->sigh = m64 << 11;
143 loaded_data->sigh = (m64 << 11) | 0x80000000;