Lines Matching refs:fixed_arg
63 unsigned long long fixed_arg; in poly_sine() local
117 fixed_arg = significand(st0_ptr); in poly_sine()
123 fixed_arg <<= 1; in poly_sine()
126 fixed_arg = 0x921fb54442d18469LL - fixed_arg; in poly_sine()
128 if (fixed_arg == 0xffffffffffffffffLL) in poly_sine()
129 fixed_arg = 0; in poly_sine()
131 XSIG_LL(argSqrd) = fixed_arg; in poly_sine()
133 mul64_Xsig(&argSqrd, &fixed_arg); in poly_sine()
148 mul64_Xsig(&accumulator, &fixed_arg); in poly_sine()
149 mul64_Xsig(&accumulator, &fixed_arg); in poly_sine()
173 fix_up = mul_32_32(fix_up, LL_MSW(fixed_arg)); in poly_sine()
206 unsigned long long fixed_arg; in poly_cos() local
278 fixed_arg = significand(st0_ptr); in poly_cos()
284 fixed_arg <<= 1; in poly_cos()
287 fixed_arg = 0x921fb54442d18469LL - fixed_arg; in poly_cos()
289 if (fixed_arg == 0xffffffffffffffffLL) in poly_cos()
290 fixed_arg = 0; in poly_cos()
297 if (!(LL_MSW(fixed_arg) & 0xffff0000)) { in poly_cos()
298 fixed_arg <<= 16; in poly_cos()
303 XSIG_LL(argSqrd) = fixed_arg; in poly_cos()
305 mul64_Xsig(&argSqrd, &fixed_arg); in poly_cos()
328 mul64_Xsig(&accumulator, &fixed_arg); in poly_cos()
329 mul64_Xsig(&accumulator, &fixed_arg); in poly_cos()
330 mul64_Xsig(&accumulator, &fixed_arg); in poly_cos()
339 XSIG_LL(accumulator) += fixed_arg; in poly_cos()