Searched refs:iz (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libm/common/R/
H A Dfmodf.c46 int hx, ix, iy, iz, k, ny, nd; local
99 * iz = ix - iy;
100 * if (iz < 0)
102 * else if (iz == 0) {
107 * ix = iz + iz;
115 iz = ix - iy;
116 if (iz >= 0)
117 ix = iz + iz;
[all...]
H A Dnextafterf.c40 int ix, iy, iz; local
51 iz = 1 | (iy & 0x80000000);
54 iz = ix - 1;
56 iz = ix + 1;
59 iz = ix + 1;
61 iz = ix - 1;
63 pw[0] = iz;
64 ix = iz & 0x7f800000;
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dremquof.c58 int hx, ix, iy, iz, k, ny, nd, m, sq; local
114 * iz = ix - iy;
115 * if (iz < 0)
117 * else if (iz == 0) {
121 * ix = iz + iz;
130 iz = ix - iy;
131 if (iz >= 0) {
133 ix = iz + iz;
161 m <<= iz; local
[all...]
/illumos-gate/usr/src/lib/libm/common/C/
H A Dfmod.c45 long long hx, ix, iy, iz; local
97 iz = ix - iy;
98 if (iz >= 0)
99 ix = iz;
102 iz = ix - iy;
103 if (iz >= 0)
104 ix = iz;
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_sprintf_sup.c249 int iz, it; local
251 for (iz = (UNPACKED_SIZE - 2); pu->significand[iz] == 0; iz--); /* Find lsw. */
253 for (it = 0; it <= iz; it++) {
254 pb->bsignificand[2 * (iz - it)] = pu->significand[it] & 0xffff;
255 pb->bsignificand[2 * (iz - it) + 1] = pu->significand[it] >> 16;
258 pb->blength = 2 * iz + 2;
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dk_clog_r.c251 int n, k, ix, iy, iz, nx, ny, nz, i, j; local
361 iz = ((int *)&z)[HIWORD] + 0x1000;
362 k = (iz >> 13) & 0x7f;
363 nz = (iz >> 20) - 0x3ff;
364 ((int *)&zk)[HIWORD] = iz & 0xffffe000;
H A Dk_clog_rl.c412 int n, k, ix, iy, iz, nx, ny, nz, i; local
569 iz = HI_XWORD(z);
570 k = ((iz & 0xffff) + 0x100) >> 9; /* 7.5 bits of x */
571 nz = (iz >> 16) - 0x3fff + (k >> 7);
/illumos-gate/usr/src/lib/libpp/common/
H A Dppproto.c74 int iz; /* input buffer size */ member in struct:proto
700 if ((n = read(proto->fd, ip, proto->iz)) > 0)
702 if ((proto->options & REGULAR) && n < proto->iz)
2167 proto->iz = n;
2181 proto->iz = n;
2207 n = read(fd, proto->ip, proto->iz);
2336 proto->oz += proto->iz;
2337 proto->iz = n;
2347 proto->iz = n -= m;
2360 proto->iz
[all...]

Completed in 80 milliseconds