Lines Matching refs:st0_ptr
28 FPU_REG *st0_ptr; in compare() local
32 st0_ptr = &st(0); in compare()
34 st0_sign = getsign(st0_ptr); in compare()
39 st0_tag = FPU_Special(st0_ptr); in compare()
95 (st0_ptr->sigh & 0xc0000000) == 0x80000000; in compare()
96 unsupported = !((exponent(st0_ptr) == EXP_OVER) in compare()
97 && (st0_ptr-> in compare()
123 FPU_to_exp16(st0_ptr, &x); in compare()
125 st0_ptr = &x; in compare()
127 exp0 = exponent16(st0_ptr); in compare()
130 exp0 = exponent(st0_ptr); in compare()
135 if (!(st0_ptr->sigh & 0x80000000)) in compare()
143 diff = st0_ptr->sigh - b->sigh; /* Works only if ms bits are in compare()
146 diff = st0_ptr->sigl > b->sigl; in compare()
148 diff = -(st0_ptr->sigl < b->sigl); in compare()