Lines Matching refs:dest
414 FPU_REG *dest = &st(deststnr); in real_2op_NaN() local
415 FPU_REG const *a = dest; in real_2op_NaN()
485 dest->sigh |= 0x40000000; in real_2op_NaN()
512 FPU_REG *dest = &st(deststnr); in FPU_divide_by_zero() local
518 setsign(dest, sign); in FPU_divide_by_zero()
571 asmlinkage __visible int arith_overflow(FPU_REG *dest) in arith_overflow() argument
578 reg_copy(&CONST_INF, dest); in arith_overflow()
582 addexponent(dest, (-3 * (1 << 13))); in arith_overflow()
599 asmlinkage __visible int arith_underflow(FPU_REG *dest) in arith_underflow() argument
605 if (exponent16(dest) <= EXP_UNDER - 63) { in arith_underflow()
606 reg_copy(&CONST_Z, dest); in arith_underflow()
610 stdexp(dest); in arith_underflow()
614 addexponent(dest, (3 * (1 << 13)) + EXTENDED_Ebias); in arith_underflow()