Searched defs:yisint (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libm/common/C/
H A D_SVID_error.c514 int ahy, k, j, yisint, ly, hx; local
518 * yisint = 0 ... y is not an integer
519 * yisint = 1 ... y is an odd int
520 * yisint = 2 ... y is an even int
527 yisint = 0;
529 yisint = 2; /* even integer y */
535 yisint = 2 - (j & 1);
539 yisint = 2 - (j & 1);
542 if (hx < 0 && yisint == 1)
H A Dpow.c164 int sbx, sby, j, k, yisint; local
196 * yisint = 0 ... y is not an integer
197 * yisint = 1 ... y is an odd int
198 * yisint = 2 ... y is an even int
200 yisint = 0;
203 yisint = 2; /* even integer y */
209 yisint = 2 - (j & 1);
213 yisint = 2 - (j & 1);
273 if (ahx == 0x3ff00000 && yisint == 0)
276 else if (yisint
[all...]
/illumos-gate/usr/src/lib/libm/common/R/
H A Dpowf.c130 int ix, iy, jx, jy, k, iw, yisint; local
147 * yisint = 0 ... y is not an integer
148 * yisint = 1 ... y is an odd int
149 * yisint = 2 ... y is an even int
152 yisint = 0;
155 yisint = 2; /* |y|>=2**24: y must be even */
160 yisint = 2 - (iw & 1);
207 if (jx == 0x3f800000 && yisint == 0) {
211 } else if (yisint == 1) {
221 if (ix < 0 && yisint
[all...]
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dpowl.c137 int sbx, sby, j, k, yisint, m; local
164 * yisint = 0 ... y is not an integer
165 * yisint = 1 ... y is an odd int
166 * yisint = 2 ... y is an even int
168 yisint = 0;
171 yisint = 2; /* even integer y */
177 yisint = 2 - (j & 1);
181 yisint = 2 - (j & 1);
185 yisint = 2 - (j & 1);
189 yisint
[all...]

Completed in 69 milliseconds