Searched refs:st1_ptr (Results 1 – 4 of 4) sorted by relevance
/arch/x86/math-emu/ |
D | poly_atan.c | 52 FPU_REG *st1_ptr, u_char st1_tag) in poly_atan() argument 61 sign2 = getsign(st1_ptr); in poly_atan() 70 exponent -= exponent(st1_ptr); in poly_atan() 73 FPU_to_exp16(st1_ptr, st1_ptr); in poly_atan() 74 exponent -= exponent16(st1_ptr); in poly_atan() 78 ((st0_ptr->sigh < st1_ptr->sigh) || in poly_atan() 79 ((st0_ptr->sigh == st1_ptr->sigh) && in poly_atan() 80 (st0_ptr->sigl < st1_ptr->sigl))))) { in poly_atan() 84 XSIG_LL(Denom) = significand(st1_ptr); in poly_atan() 89 XSIG_LL(Numer) = significand(st1_ptr); in poly_atan() [all …]
|
D | fpu_trig.c | 358 register FPU_REG *st1_ptr = st0_ptr; /* anticipate */ in fxtract() local 371 sign = getsign(st1_ptr); in fxtract() 372 reg_copy(st1_ptr, st_new_ptr); in fxtract() 403 sign = getsign(st1_ptr); in fxtract() 404 FPU_to_exp16(st1_ptr, st_new_ptr); in fxtract() 780 FPU_REG *st1_ptr = &st(1); in do_fprem() local 797 st1_sign = FPU_to_exp16(st1_ptr, &st1); in do_fprem() 957 st1_tag = FPU_Special(st1_ptr); in do_fprem() 1015 real_2op_NaN(st1_ptr, st1_tag, 0, st1_ptr); in do_fprem() 1022 FPU_REG *st1_ptr = &st(1), exponent; in fyl2x() local [all …]
|
D | poly_l2.c | 26 void poly_l2(FPU_REG *st0_ptr, FPU_REG *st1_ptr, u_char st1_sign) in poly_l2() argument 79 XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2() 89 significand(st1_ptr) = XSIG_LL(accumulator); in poly_l2() 90 setexponent16(st1_ptr, expon_expon + exponent16(st1_ptr) + 1); in poly_l2() 92 tag = FPU_round(st1_ptr, 1, 0, FULL_PRECISION, sign ^ st1_sign); in poly_l2() 106 FPU_REG * st0_ptr, FPU_REG * st1_ptr, FPU_REG * dest) in poly_l2p1() argument 116 XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2p1() 121 exponent += exponent16(st1_ptr) + 1; in poly_l2p1() 139 changesign(st1_ptr); in poly_l2p1()
|
D | fpu_proto.h | 97 extern void poly_atan(FPU_REG * st0_ptr, u_char st0_tag, FPU_REG *st1_ptr, 100 extern void poly_l2(FPU_REG *st0_ptr, FPU_REG *st1_ptr, u_char st1_sign);
|