Lines Matching refs:zero
61 zero = 0.0L; variable
127 if (v == zero) { /* z**(real) */ in cpowl()
131 } else if (u == zero) { /* (anything) ** 0 is 1 */ in cpowl()
133 LD_IM(ans) = zero; in cpowl()
134 } else if (y == zero) { /* real ** real */ in cpowl()
135 LD_IM(ans) = zero; in cpowl()
140 LD_RE(ans) = (c == zero)? c: c * r; in cpowl()
141 LD_IM(ans) = (s == zero)? s: s * r; in cpowl()
144 } else if (x == zero || ix >= hiinf || iy >= hiinf) { in cpowl()
148 if (x == zero) in cpowl()
154 LD_RE(ans) = (c == zero)? c: c * r; in cpowl()
155 LD_IM(ans) = (s == zero)? s: s * r; in cpowl()
182 LD_RE(ans) = (c == zero)? c: c * r; in cpowl()
183 LD_IM(ans) = (s == zero)? s: s * r; in cpowl()
270 if (c != zero) c *= r; in cpowl()
271 if (s != zero) s *= r; in cpowl()