Home | History | Annotate | Download | only in ppc

Lines Matching defs:imag

41 	DD imag = { .ld = __gcc_qdiv(imagNumerator, denom) };
45 imag.s.hi = crt_scalbn(imag.s.hi, -ilogbw);
46 imag.s.lo = crt_scalbn(imag.s.lo, -ilogbw);
48 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi))
59 imag.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * bDD.s.hi;
60 imag.s.lo = 0.0;
70 imag.s.hi = CRT_INFINITY * (bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi);
71 imag.s.lo = 0.0;
81 imag.s.hi = crt_copysign(0.0,(bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi));
82 imag.s.lo = 0.0;
88 __imag__ z = imag.ld;