Home
last modified time | relevance | path

Searched refs:st1_ptr (Results 1 – 4 of 4) sorted by relevance

/linux-2.4.37.9/arch/i386/math-emu/
Dfpu_trig.c382 register FPU_REG *st1_ptr = st0_ptr; /* anticipate */ in fxtract() local
394 sign = getsign(st1_ptr); in fxtract()
395 reg_copy(st1_ptr, st_new_ptr); in fxtract()
429 sign = getsign(st1_ptr); in fxtract()
430 FPU_to_exp16(st1_ptr, st_new_ptr); in fxtract()
865 FPU_REG *st1_ptr = &st(1); in do_fprem() local
883 st1_sign = FPU_to_exp16(st1_ptr, &st1); in do_fprem()
1051 st1_tag = FPU_Special(st1_ptr); in do_fprem()
1119 real_2op_NaN(st1_ptr, st1_tag, 0, st1_ptr); in do_fprem()
1127 FPU_REG *st1_ptr = &st(1), exponent; in fyl2x() local
[all …]
Dpoly_atan.c56 FPU_REG *st1_ptr, u_char st1_tag) in poly_atan() argument
67 sign2 = getsign(st1_ptr); in poly_atan()
80 exponent -= exponent(st1_ptr); in poly_atan()
85 FPU_to_exp16(st1_ptr, st1_ptr); in poly_atan()
86 exponent -= exponent16(st1_ptr); in poly_atan()
90 ((st0_ptr->sigh < st1_ptr->sigh) || in poly_atan()
91 ((st0_ptr->sigh == st1_ptr->sigh) && in poly_atan()
92 (st0_ptr->sigl < st1_ptr->sigl))) ) ) in poly_atan()
97 XSIG_LL(Denom) = significand(st1_ptr); in poly_atan()
104 XSIG_LL(Numer) = significand(st1_ptr); in poly_atan()
[all …]
Dpoly_l2.c29 void poly_l2(FPU_REG *st0_ptr, FPU_REG *st1_ptr, u_char st1_sign) in poly_l2() argument
91 yaccum.lsw = 0; XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2()
102 significand(st1_ptr) = XSIG_LL(accumulator); in poly_l2()
103 setexponent16(st1_ptr, expon_expon + exponent16(st1_ptr) + 1); in poly_l2()
105 tag = FPU_round(st1_ptr, 1, 0, FULL_PRECISION, sign ^ st1_sign); in poly_l2()
120 FPU_REG *st0_ptr, FPU_REG *st1_ptr, FPU_REG *dest) in poly_l2p1() argument
131 XSIG_LL(yaccum) = significand(st1_ptr); in poly_l2p1()
136 exponent += exponent16(st1_ptr) + 1; in poly_l2p1()
156 changesign(st1_ptr); in poly_l2p1()
Dfpu_proto.h90 extern void poly_atan(FPU_REG *st0_ptr, u_char st0_tag, FPU_REG *st1_ptr,
93 extern void poly_l2(FPU_REG *st0_ptr, FPU_REG *st1_ptr, u_char st1_sign);