Home
last modified time | relevance | path

Searched refs:DPXMULT (Results 1 – 3 of 3) sorted by relevance

/Linux-v4.19/arch/mips/math-emu/
Ddp_mul.c137 lrm = DPXMULT(lxm, lym); in ieee754dp_mul()
138 hrm = DPXMULT(hxm, hym); in ieee754dp_mul()
140 t = DPXMULT(lxm, hym); in ieee754dp_mul()
148 t = DPXMULT(hxm, lym); in ieee754dp_mul()
Ddp_maddf.c210 lrm = DPXMULT(lxm, lym); in _dp_maddf()
211 hrm = DPXMULT(hxm, hym); in _dp_maddf()
213 t = DPXMULT(lxm, hym); in _dp_maddf()
221 t = DPXMULT(hxm, lym); in _dp_maddf()
Dieee754dp.h59 #define DPXMULT(x, y) ((u64)(x) * (u64)y) macro