Home
last modified time | relevance | path

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

/arch/sh/kernel/cpu/sh4/
Dfpu.c260 long long llx, lly; in ieee_fpe_handler() local
263 llx = ((long long)hx << 32) in ieee_fpe_handler()
267 llx = float64_mul(llx, lly); in ieee_fpe_handler()
268 tsk->thread.xstate->hardfpu.fp_regs[n] = llx >> 32; in ieee_fpe_handler()
269 tsk->thread.xstate->hardfpu.fp_regs[n + 1] = llx & 0xffffffff; in ieee_fpe_handler()
298 long long llx, lly; in ieee_fpe_handler() local
301 llx = ((long long)hx << 32) in ieee_fpe_handler()
306 llx = float64_add(llx, lly); in ieee_fpe_handler()
308 llx = float64_sub(llx, lly); in ieee_fpe_handler()
309 tsk->thread.xstate->hardfpu.fp_regs[n] = llx >> 32; in ieee_fpe_handler()
[all …]
/arch/sh/kernel/cpu/sh2a/
Dfpu.c484 long long llx, lly; in ieee_fpe_handler() local
487 llx = ((long long) hx << 32) in ieee_fpe_handler()
492 llx = denormal_muld(lly, llx); in ieee_fpe_handler()
494 llx = denormal_muld(llx, lly); in ieee_fpe_handler()
495 tsk->thread.xstate->hardfpu.fp_regs[n] = llx >> 32; in ieee_fpe_handler()
496 tsk->thread.xstate->hardfpu.fp_regs[n+1] = llx & 0xffffffff; in ieee_fpe_handler()
527 long long llx, lly; in ieee_fpe_handler() local
530 llx = ((long long) hx << 32) in ieee_fpe_handler()
535 llx = denormal_addd(llx, lly); in ieee_fpe_handler()
537 llx = denormal_addd(llx, lly ^ (1LL << 63)); in ieee_fpe_handler()
[all …]