Home | History | Annotate | Download | only in math

Lines Matching full:special

150 // Special cases are (in order):
173 // special case
177 // special case Pow(1, y) = 1 for any y
181 // special case Pow(x, 1) = x for any x
185 // special case Pow(x, NaN) = NaN for any x
211 // special case Pow(+Inf, y) = +Inf for y > 0
221 // special case Pow(-1, ±Inf) = 1
228 // special case Pow(+0, -Inf) = +Inf
232 // special case Pow(+0, y < 0) = +Inf
239 // special case Pow(-0, -Inf) = +Inf
244 // special case Pow(x, ±0) = 1 for any x
255 // special case Pow(-0, y) = -Inf for y an odd integer < 0
256 // special case Pow(-0, y) = +Inf for finite y < 0 and not an odd integer
268 // special case Pow(-0, y) = -0 for y an odd integer > 0
269 // special case Pow(±0, y) = +0 for finite y > 0 and not an odd integer
281 // special case Pow(x, y) = NaN for finite x < 0 and finite non-integer y
288 // special case Pow(x, +Inf) = +Inf for |x| > 1
647 posZeroLtZero: // special case Pow(+0, y < 0) = +Inf