Home
last modified time | relevance | path

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

/linux-2.4.37.9/arch/mips/math-emu/
Ddp_sqrt.c42 unsigned scalx, yh; in ieee754dp_sqrt() local
99 yh = y.bits >> 32; in ieee754dp_sqrt()
100 yh = (yh >> 1) + 0x1ff80000; in ieee754dp_sqrt()
101 yh = yh - table[(yh >> 15) & 31]; in ieee754dp_sqrt()
102 y.bits = ((u64) yh << 32) | (y.bits & 0xffffffff); in ieee754dp_sqrt()
/linux-2.4.37.9/include/math-emu/
Dop-2.h152 #define __FP_FRAC_ADD_2(rh, rl, xh, xl, yh, yl) \
153 (rh = xh + yh + ((rl = xl + yl) < xl))
156 #define __FP_FRAC_SUB_2(rh, rl, xh, xl, yh, yl) \
157 (rh = xh - yh - ((rl = xl - yl) > xl))
160 #define __FP_FRAC_DEC_2(xh, xl, yh, yl) \
163 xh -= yh + ((xl -= yl) > _t); \
176 #define __FP_FRAC_DEC_2(xh, xl, yh, yl) sub_ddmmss(xh, xl, xh, xl, yh, yl) argument
/linux-2.4.37.9/arch/ppc/math-emu/
Dop-2.h124 #define __FP_FRAC_ADD_2(rh, rl, xh, xl, yh, yl) \
125 (rh = xh + yh + ((rl = xl + yl) < xl))
128 #define __FP_FRAC_SUB_2(rh, rl, xh, xl, yh, yl) \
129 (rh = xh - yh - ((rl = xl - yl) > xl))