Home | History | Annotate | Download | only in ppc

Lines Matching defs:imag

46 	DD imag = { .ld = __gcc_qdiv(imagNumerator, denom) };
50 imag.s.hi = crt_scalbn(imag.s.hi, -ilogbw);
51 imag.s.lo = crt_scalbn(imag.s.lo, -ilogbw);
53 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi))
64 imag.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * bDD.s.hi;
65 imag.s.lo = 0.0;
75 imag.s.hi = CRT_INFINITY * (bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi);
76 imag.s.lo = 0.0;
86 imag.s.hi = crt_copysign(0.0,(bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi));
87 imag.s.lo = 0.0;
93 __imag__ z = imag.ld;