Lines Matching refs:t
755 FPU_REG t; in FPU_store_int64() local
771 reg_copy(st0_ptr, &t); in FPU_store_int64()
772 precision_loss = FPU_round_to_int(&t, st0_tag); in FPU_store_int64()
773 ((long *)&tll)[0] = t.sigl; in FPU_store_int64()
774 ((long *)&tll)[1] = t.sigh; in FPU_store_int64()
776 ((t.sigh & 0x80000000) && in FPU_store_int64()
777 !((t.sigh == 0x80000000) && (t.sigl == 0) && signnegative(&t)))) { in FPU_store_int64()
789 if (signnegative(&t)) in FPU_store_int64()
805 FPU_REG t; in FPU_store_int32() local
820 reg_copy(st0_ptr, &t); in FPU_store_int32()
821 precision_loss = FPU_round_to_int(&t, st0_tag); in FPU_store_int32()
822 if (t.sigh || in FPU_store_int32()
823 ((t.sigl & 0x80000000) && in FPU_store_int32()
824 !((t.sigl == 0x80000000) && signnegative(&t)))) { in FPU_store_int32()
830 t.sigl = 0x80000000; in FPU_store_int32()
836 if (signnegative(&t)) in FPU_store_int32()
837 t.sigl = -(long)t.sigl; in FPU_store_int32()
842 FPU_put_user(t.sigl, (unsigned long __user *)d); in FPU_store_int32()
851 FPU_REG t; in FPU_store_int16() local
866 reg_copy(st0_ptr, &t); in FPU_store_int16()
867 precision_loss = FPU_round_to_int(&t, st0_tag); in FPU_store_int16()
868 if (t.sigh || in FPU_store_int16()
869 ((t.sigl & 0xffff8000) && in FPU_store_int16()
870 !((t.sigl == 0x8000) && signnegative(&t)))) { in FPU_store_int16()
876 t.sigl = 0x8000; in FPU_store_int16()
882 if (signnegative(&t)) in FPU_store_int16()
883 t.sigl = -t.sigl; in FPU_store_int16()
888 FPU_put_user((short)t.sigl, d); in FPU_store_int16()
897 FPU_REG t; in FPU_store_bcd() local
915 reg_copy(st0_ptr, &t); in FPU_store_bcd()
916 precision_loss = FPU_round_to_int(&t, st0_tag); in FPU_store_bcd()
917 ll = significand(&t); in FPU_store_bcd()
920 if ((t.sigh > 0x0de0b6b3) || in FPU_store_bcd()
921 ((t.sigh == 0x0de0b6b3) && (t.sigl > 0xa763ffff))) { in FPU_store_bcd()