Lines Matching refs:fixed_arg
62 unsigned long long fixed_arg; in poly_sine() local
116 fixed_arg = significand(st0_ptr); in poly_sine()
122 fixed_arg <<= 1; in poly_sine()
125 fixed_arg = 0x921fb54442d18469LL - fixed_arg; in poly_sine()
127 if (fixed_arg == 0xffffffffffffffffLL) in poly_sine()
128 fixed_arg = 0; in poly_sine()
130 XSIG_LL(argSqrd) = fixed_arg; in poly_sine()
132 mul64_Xsig(&argSqrd, &fixed_arg); in poly_sine()
147 mul64_Xsig(&accumulator, &fixed_arg); in poly_sine()
148 mul64_Xsig(&accumulator, &fixed_arg); in poly_sine()
172 fix_up = mul_32_32(fix_up, LL_MSW(fixed_arg)); in poly_sine()
205 unsigned long long fixed_arg; in poly_cos() local
277 fixed_arg = significand(st0_ptr); in poly_cos()
283 fixed_arg <<= 1; in poly_cos()
286 fixed_arg = 0x921fb54442d18469LL - fixed_arg; in poly_cos()
288 if (fixed_arg == 0xffffffffffffffffLL) in poly_cos()
289 fixed_arg = 0; in poly_cos()
296 if (!(LL_MSW(fixed_arg) & 0xffff0000)) { in poly_cos()
297 fixed_arg <<= 16; in poly_cos()
302 XSIG_LL(argSqrd) = fixed_arg; in poly_cos()
304 mul64_Xsig(&argSqrd, &fixed_arg); in poly_cos()
327 mul64_Xsig(&accumulator, &fixed_arg); in poly_cos()
328 mul64_Xsig(&accumulator, &fixed_arg); in poly_cos()
329 mul64_Xsig(&accumulator, &fixed_arg); in poly_cos()
338 XSIG_LL(accumulator) += fixed_arg; in poly_cos()