Lines Matching refs:fixed_arg
71 unsigned long long fixed_arg; in poly_sine() local
124 fixed_arg = significand(st0_ptr); in poly_sine()
131 fixed_arg <<= 1; in poly_sine()
134 fixed_arg = 0x921fb54442d18469LL - fixed_arg; in poly_sine()
136 if ( fixed_arg == 0xffffffffffffffffLL ) in poly_sine()
137 fixed_arg = 0; in poly_sine()
139 XSIG_LL(argSqrd) = fixed_arg; argSqrd.lsw = 0; in poly_sine()
140 mul64_Xsig(&argSqrd, &fixed_arg); in poly_sine()
154 mul64_Xsig(&accumulator, &fixed_arg); in poly_sine()
155 mul64_Xsig(&accumulator, &fixed_arg); in poly_sine()
180 fix_up = mul_32_32(fix_up, LL_MSW(fixed_arg)); in poly_sine()
216 unsigned long long fixed_arg; in poly_cos() local
293 fixed_arg = significand(st0_ptr); in poly_cos()
300 fixed_arg <<= 1; in poly_cos()
303 fixed_arg = 0x921fb54442d18469LL - fixed_arg; in poly_cos()
305 if ( fixed_arg == 0xffffffffffffffffLL ) in poly_cos()
306 fixed_arg = 0; in poly_cos()
313 if ( !(LL_MSW(fixed_arg) & 0xffff0000) ) in poly_cos()
315 fixed_arg <<= 16; in poly_cos()
320 XSIG_LL(argSqrd) = fixed_arg; argSqrd.lsw = 0; in poly_cos()
321 mul64_Xsig(&argSqrd, &fixed_arg); in poly_cos()
344 mul64_Xsig(&accumulator, &fixed_arg); in poly_cos()
345 mul64_Xsig(&accumulator, &fixed_arg); in poly_cos()
346 mul64_Xsig(&accumulator, &fixed_arg); in poly_cos()
355 XSIG_LL(accumulator) += fixed_arg; in poly_cos()