Home
last modified time | relevance | path

Searched refs:hy (Results 1 – 2 of 2) sorted by relevance

/arch/sh/kernel/cpu/sh2a/
Dfpu.c97 static int denormal_mulf(int hx, int hy) in denormal_mulf() argument
104 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() argument
171 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() argument
260 if ((hx ^ hy) & 0x80000000) { in denormal_addf()
[all …]
/arch/sh/kernel/cpu/sh4/
Dfpu.c248 unsigned int hx, hy; in ieee_fpe_handler() local
253 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() local
291 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 …]