Searched refs:hy (Results 1 – 2 of 2) sorted by relevance
94 static int denormal_mulf(int hx, int hy) in denormal_mulf() argument101 iy = hy & 0x7fffffff; in denormal_mulf()103 return ((hx ^ hy) & 0x80000000); in denormal_mulf()122 ix |= (hx ^ hy) & 0x80000000; in denormal_mulf()161 static long long denormal_muld(long long hx, long long hy) in denormal_muld() argument168 iy = hy & 0x7fffffffffffffffLL; in denormal_muld()170 return ((hx ^ hy) & 0x8000000000000000LL); in denormal_muld()195 ix |= (hx ^ hy) & 0x8000000000000000LL; in denormal_muld()252 static int denormal_addf(int hx, int hy) in denormal_addf() argument257 if ((hx ^ hy) & 0x80000000) { in denormal_addf()[all …]
244 unsigned int hx, hy; in ieee_fpe_handler() local249 hy = tsk->thread.xstate->hardfpu.fp_regs[m]; in ieee_fpe_handler()255 || (hy & 0x7fffffff) < 0x00100000))) { in ieee_fpe_handler()261 lly = ((long long)hy << 32) in ieee_fpe_handler()268 || (hy & 0x7fffffff) < 0x00800000))) { in ieee_fpe_handler()270 hx = float32_mul(hx, hy); in ieee_fpe_handler()282 unsigned int hx, hy; in ieee_fpe_handler() local287 hy = tsk->thread.xstate->hardfpu.fp_regs[m]; in ieee_fpe_handler()293 || (hy & 0x7fffffff) < 0x00100000))) { in ieee_fpe_handler()299 lly = ((long long)hy << 32) in ieee_fpe_handler()[all …]