Searched refs:hy (Results 1 – 2 of 2) sorted by relevance
97 static int denormal_mulf(int hx, int hy) in denormal_mulf() argument104 iy = hy & 0x7fffffff; in denormal_mulf()106 return ((hx ^ hy) & 0x80000000); in denormal_mulf()125 ix |= (hx ^ hy) & 0x80000000; in denormal_mulf()164 static long long denormal_muld(long long hx, long long hy) in denormal_muld() argument171 iy = hy & 0x7fffffffffffffffLL; in denormal_muld()173 return ((hx ^ hy) & 0x8000000000000000LL); in denormal_muld()198 ix |= (hx ^ hy) & 0x8000000000000000LL; in denormal_muld()255 static int denormal_addf(int hx, int hy) in denormal_addf() argument260 if ((hx ^ hy) & 0x80000000) { in denormal_addf()[all …]
248 unsigned int hx, hy; in ieee_fpe_handler() local253 hy = tsk->thread.xstate->hardfpu.fp_regs[m]; in ieee_fpe_handler()259 || (hy & 0x7fffffff) < 0x00100000))) { in ieee_fpe_handler()265 lly = ((long long)hy << 32) in ieee_fpe_handler()272 || (hy & 0x7fffffff) < 0x00800000))) { in ieee_fpe_handler()274 hx = float32_mul(hx, hy); in ieee_fpe_handler()286 unsigned int hx, hy; in ieee_fpe_handler() local291 hy = tsk->thread.xstate->hardfpu.fp_regs[m]; in ieee_fpe_handler()297 || (hy & 0x7fffffff) < 0x00100000))) { in ieee_fpe_handler()303 lly = ((long long)hy << 32) in ieee_fpe_handler()[all …]