Searched refs:yHi (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ppc/ |
H A D | gcc_qdiv.c | 17 double yHi, yLo, qHi, qLo; in __gcc_qdiv() local 36 yHi = high26bits(y); in __gcc_qdiv() 40 yLo = y - yHi; in __gcc_qdiv() 43 tmp = LOWORDER(yq, yHi, yLo, qHi, qLo); in __gcc_qdiv()
|
H A D | DD.h | 19 #define LOWORDER(xy, xHi, xLo, yHi, yLo) \ argument 20 (((((xHi) * (yHi) - (xy)) + (xHi) * (yLo)) + (xLo) * (yHi)) + (xLo) * (yLo))
|