Home
last modified time | relevance | path

Searched refs:ahx (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libm/common/C/
H A Dpow.c165 int hx, hy, ahx, ahy; in pow() local
173 ahx = hx & ~0x80000000; in pow()
176 if ((ahx | lx) == 0) in pow()
186 else if (ahx > 0x7ff00000 || (ahx == 0x7ff00000 && lx != 0) || in pow()
227 } else if (ahx >= 0x3ff00000) in pow()
237 else if (ahx < 0x40000 || ((ahx - 0x40000) | in pow()
246 if (ahx >= 0x5ff00000 && ahx < 0x7ff00000) in pow()
249 else if ((ahx < 0x1e56a09e && (ahx | lx) != 0) || in pow()
257 if (!((ahx | lx) == 0 || ((ahx - 0x7ff00000) | lx) == in pow()
264 if (ahx == 0x7ff00000 || ahx == 0 || ahx == 0x3ff00000) { in pow()
[all …]
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dpowl.c138 int hx, lx, hy, ly, ahx, ahy; in powl() local
147 ahx = hx & ~0x80000000; in powl()
155 else if (ahx > 0x7fff0000 || (ahx == 0x7fff0000 && lx != 0) || in powl()
197 if (((ahx - 0x3fff0000) | lx) == 0) { in powl()
204 } else if (ahx >= 0x3fff0000) in powl()
217 if (!((ahx | lx) == 0 || ((ahx - 0x7fff0000) | lx) == in powl()
225 if (ahx == 0x7fff0000 || ahx == 0 || ahx == 0x3fff0000) { in powl()
231 if (ahx == 0x3fff0000 && yisint == 0) in powl()