Lines Matching refs:sigl
59 if (!(ptr->sigh | ptr->sigl)) { in FPU_tagof()
114 loaded_data->sigl = 0x00000000; in FPU_load_double()
122 loaded_data->sigl = l64 << 11; in FPU_load_double()
136 loaded_data->sigl = l64 << 11; in FPU_load_double()
145 loaded_data->sigl = l64 << 11; in FPU_load_double()
179 loaded_data->sigl = 0; in FPU_load_single()
188 loaded_data->sigl = 0x00000000; in FPU_load_single()
195 loaded_data->sigl = 0; in FPU_load_single()
200 loaded_data->sigl = 0; in FPU_load_single()
263 loaded_data->sigl = 0; in FPU_load_int32()
292 loaded_data->sigl = 0; in FPU_load_int16()
350 FPU_put_user(st0_ptr->sigl, (unsigned long __user *)d); in FPU_store_extended()
403 ((tmp.sigh == 0x00100000) && (tmp.sigl == 0) in FPU_store_double()
404 && (st0_ptr->sigl & 0x000007ff))) in FPU_store_double()
417 l[0] = tmp.sigl; in FPU_store_double()
420 if (tmp.sigl & 0x000007ff) { in FPU_store_double()
425 increment = ((tmp.sigl & 0x7ff) > 0x400) | /* nearest */ in FPU_store_double()
426 ((tmp.sigl & 0xc00) == 0xc00); /* odd -> even */ in FPU_store_double()
431 sigl & 0x7ff; in FPU_store_double()
436 sigl & 0x7ff : 0; in FPU_store_double()
444 tmp.sigl &= 0xfffff800; in FPU_store_double()
447 if (tmp.sigl >= 0xfffff800) { in FPU_store_double()
458 tmp.sigl = 0x00000000; in FPU_store_double()
461 tmp.sigl += 0x00000800; in FPU_store_double()
467 l[0] = (tmp.sigl >> 11) | (tmp.sigh << 21); in FPU_store_double()
516 (st0_ptr->sigl >> 11) | (st0_ptr-> in FPU_store_double()
588 if (!((tmp.sigl == 0x00800000) && in FPU_store_single()
590 || st0_ptr->sigl))) in FPU_store_single()
603 templ = tmp.sigl; in FPU_store_single()
605 if (tmp.sigl | (tmp.sigh & 0x000000ff)) { in FPU_store_single()
607 unsigned long sigl = tmp.sigl; in FPU_store_single() local
613 ||(((sigh & 0xff) == 0x80) && sigl) /* more than half */ in FPU_store_single()
618 ? 0 : (sigl | (sigh & 0xff)); in FPU_store_single()
622 ? (sigl | (sigh & 0xff)) : 0; in FPU_store_single()
630 tmp.sigl = 0; in FPU_store_single()
773 ((long *)&tll)[0] = t.sigl; in FPU_store_int64()
777 !((t.sigh == 0x80000000) && (t.sigl == 0) && signnegative(&t)))) { in FPU_store_int64()
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()
837 t.sigl = -(long)t.sigl; in FPU_store_int32()
842 FPU_put_user(t.sigl, (unsigned long __user *)d); in FPU_store_int32()
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()
883 t.sigl = -t.sigl; in FPU_store_int16()
888 FPU_put_user((short)t.sigl, d); in FPU_store_int16()
921 ((t.sigh == 0x0de0b6b3) && (t.sigl > 0xa763ffff))) { in FPU_store_bcd()
982 r->sigl = r->sigh = ~0; /* The largest representable number */ in FPU_round_to_int()
986 eax = FPU_shrxs(&r->sigl, 63 - exponent(r)); in FPU_round_to_int()
987 very_big = !(~(r->sigh) | ~(r->sigl)); /* test for 0xfff...fff */ in FPU_round_to_int()
994 || (half_or_more && (r->sigl & 1))) { /* odd -> even */ in FPU_round_to_int()
1100 (fpu_register(i).sigl | fpu_register(i). in fldenv()