Lines Matching refs:st0_ptr
27 FPU_REG *st0_ptr; in compare() local
31 st0_ptr = &st(0); in compare()
33 st0_sign = getsign(st0_ptr); in compare()
38 st0_tag = FPU_Special(st0_ptr); in compare()
94 (st0_ptr->sigh & 0xc0000000) == 0x80000000; in compare()
95 unsupported = !((exponent(st0_ptr) == EXP_OVER) in compare()
96 && (st0_ptr-> in compare()
122 FPU_to_exp16(st0_ptr, &x); in compare()
124 st0_ptr = &x; in compare()
126 exp0 = exponent16(st0_ptr); in compare()
129 exp0 = exponent(st0_ptr); in compare()
134 if (!(st0_ptr->sigh & 0x80000000)) in compare()
142 diff = st0_ptr->sigh - b->sigh; /* Works only if ms bits are in compare()
145 diff = st0_ptr->sigl > b->sigl; in compare()
147 diff = -(st0_ptr->sigl < b->sigl); in compare()