/illumos-gate/usr/src/lib/libc/port/locale/ |
H A D | wcscoll.c | 72 const wchar_t *w2 = ws2; local 92 if ((tr2 = wcsdup(w2)) == NULL) 102 w2 = tr2; 106 while ((*w1 || st1) && (*w2 || st2)) { 117 _collate_lookup(lcc, w2, &len2, &pri2, pass, 131 w2 += len2; 134 while ((*w1 || st1) && (*w2 || st2)) { 147 while (*w2) { 148 _collate_lookup(lcc, w2, &len2, 156 w2 [all...] |
H A D | strcoll.c | 54 wchar_t *w1 = NULL, *w2 = NULL; local 83 w2 = t2; 85 if ((w2 = alloca(sz2 * sizeof (wchar_t))) == NULL) 92 if ((mbstowcs_l(w2, s2, sz2, loc)) == (size_t)-1) 95 ret = wcscoll_l(w1, w2, loc);
|
/illumos-gate/usr/src/lib/libm/common/complex/ |
H A D | cpow.c | 115 double t1, t2, t3, t4, w1, w2, t; local 137 /* summing r = t1 + t2 + t3 + t4 to w1 + w2 */ 139 w2 = t4 - (w1 - t3); 141 w2 += w1 - (t - t2); 142 w1 = t + w2; 143 w2 += t - w1; 145 w2 += w1 - (t - t1); 146 w1 = t + w2; 147 *w = w2 - (w1 - t); 155 double b[4], t1, t2, t3, t4, w1, w2, u local [all...] |
H A D | cpowl.c | 70 long double t1, t2, t3, t4, w1, w2, t; local 92 /* summing r = t1 + t2 + t3 + t4 to w1 + w2 */ 94 w2 = t4 - (w1 - t3); 96 w2 += w1 - (t - t2); 97 w1 = t + w2; 98 w2 += t - w1; 100 w2 += w1 - (t - t1); 101 w1 = t + w2; 102 *w = w2 - (w1 - t); 110 long double t1, t2, t3, t4, x1, x2, y1, y2, u1, v1, b[4], w1, w2; local [all...] |
H A D | k_atan2.c | 458 double t, xh, th, t1, t2, w1, w2; local 539 w1 = mx_atan(t, &w2); 540 w2 += (t2 - t1) / (x + y * t); 544 w2 = (pi_lo - w2) - (w1 - t2); 547 *w = (hy >= 0)? w2 : -w2;
|
H A D | k_atan2l.c | 724 long double t, xh, th, t1, t2, w1, w2; local 798 w1 = mx_atanl(t, &w2); 799 w2 += (t2 - t1) / (x + y * t); 803 w2 = (pi_lo - w2) - (w1 - t2); 806 *w = (hy >= 0)? w2 : -w2;
|
/illumos-gate/usr/src/lib/libm/common/C/ |
H A D | pow.c | 37 * log2(x) = w1 + w2, 163 double y1, y2, w1, w2; local 286 /* first compute log2(ax) = w1+w2, with 24 bits w1 */ 287 w1 = log2_x(ax, &w2); 289 /* split up y into y1+y2 and compute (y1+y2)*(w1+w2) */ 294 y2 = y * w2; 297 y2 = (y - y1) * w1 + y * w2; 306 w2 = y1 - z; 307 w2 += y2; 309 if (w2 > [all...] |
/illumos-gate/usr/src/common/crypto/aes/amd64/ |
H A D | aestab.h | 123 d_4(uint32_t, t_dec(f, l), sb_data, w0, w1, w2, w3); 137 d_4(uint32_t, t_dec(i, l), isb_data, w0, w1, w2, w3); 152 d_4(uint32_t, t_dec(l, s), sb_data, w0, w1, w2, w3);
|
/illumos-gate/usr/src/common/crypto/sha2/ |
H A D | sha2.c | 168 uint32_t w0, w1, w2, w3, w4, w5, w6, w7; local 211 w2 = LOAD_BIG_32(blk + 4 * 2); 212 SHA256ROUND(g, h, a, b, c, d, e, f, 2, w2); 255 w1 = SIGMA1_256(w15) + w10 + SIGMA0_256(w2) + w1; 257 w2 = SIGMA1_256(w0) + w11 + SIGMA0_256(w3) + w2; 258 SHA256ROUND(g, h, a, b, c, d, e, f, 18, w2); 261 w4 = SIGMA1_256(w2) + w13 + SIGMA0_256(w5) + w4; 271 w9 = SIGMA1_256(w7) + w2 + SIGMA0_256(w10) + w9; 288 w1 = SIGMA1_256(w15) + w10 + SIGMA0_256(w2) 378 uint64_t w0, w1, w2, w3, w4, w5, w6, w7; local [all...] |
/illumos-gate/usr/src/lib/libm/common/Q/ |
H A D | powl.c | 136 long double y1, y2, w1, w2; local 246 /* first compute log(ax) = w1+w2, with 53 bits w1 */ 247 w1 = logl_x(ax, &w2); 249 /* split up y into y1+y2 and compute (y1+y2)*(w1+w2) */ 252 y2 = y * w2; 255 y2 = (y - y1) * w1 + y * w2; 301 w2 = (w1 - t * (t1 + t * (t2 + t * (t3 + t * (t4 + t * t5))))) - 303 z = _TBL_expl_hi[j] - ((_TBL_expl_hi[j] * (w1 + w1)) / w2 -
|
/illumos-gate/usr/src/lib/libmvec/common/ |
H A D | __vcosbig_ultra3.c | 105 double fn0, fn1, fn2, a0, a1, a2, w0, w1, w2, y0, y1, y2; local 187 w2 = fn2 * pio2_2; 190 x2 = a2 - w2; 193 y2 = (a2 - x2) - w2; 199 w2 = fn2 * pio2_3 - y2; 202 x2 = a2 - w2; 205 y2 = (a2 - x2) - w2; 211 w2 = fn2 * pio2_3t - y2; 214 x2 = a2 - w2; 217 y2 = (a2 - x2) - w2; [all...] |
H A D | __vsinbig_ultra3.c | 105 double fn0, fn1, fn2, a0, a1, a2, w0, w1, w2, y0, y1, y2; local 187 w2 = fn2 * pio2_2; 190 x2 = a2 - w2; 193 y2 = (a2 - x2) - w2; 199 w2 = fn2 * pio2_3 - y2; 202 x2 = a2 - w2; 205 y2 = (a2 - x2) - w2; 211 w2 = fn2 * pio2_3t - y2; 214 x2 = a2 - w2; 217 y2 = (a2 - x2) - w2; [all...] |
H A D | __vcos.c | 202 double a0, a1, a2, w0, w1, w2; local 227 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 240 t2 = __vlibm_TBL_sincos_lo[j2+1] - (__vlibm_TBL_sincos_hi[j2+xsb2]*w2 - a2*t2); 264 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 272 t2 = __vlibm_TBL_sincos_lo[j2+1] - (__vlibm_TBL_sincos_hi[j2+xsb2]*w2 - a2*t2); 295 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 303 t2 = __vlibm_TBL_sincos_lo[j2+1] - (__vlibm_TBL_sincos_hi[j2+xsb2]*w2 - a2*t2); 322 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 326 t2 = __vlibm_TBL_sincos_lo[j2+1] - (__vlibm_TBL_sincos_hi[j2+xsb2]*w2 - a2*t2); 533 double fn0, fn1, fn2, a0, a1, a2, w0, w1, w2, y local [all...] |
H A D | __vsin.c | 176 double a0, a1, a2, w0, w1, w2; local 201 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 213 t2 = (__vlibm_TBL_sincos_hi[j2+1] * w2 + a2 * t2) + __vlibm_TBL_sincos_lo[j2+xsb2]; 236 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 245 t2 = (__vlibm_TBL_sincos_hi[j2+1] * w2 + a2 * t2) + __vlibm_TBL_sincos_lo[j2+xsb2]; 268 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 277 t2 = (__vlibm_TBL_sincos_hi[j2+1] * w2 + a2 * t2) + __vlibm_TBL_sincos_lo[j2+xsb2]; 296 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 302 t2 = (__vlibm_TBL_sincos_hi[j2+1] * w2 + a2 * t2) + __vlibm_TBL_sincos_lo[j2+xsb2]; 512 double fn0, fn1, fn2, a0, a1, a2, w0, w1, w2, y local [all...] |
H A D | __vsincos.c | 232 double w0, w1, w2; local 263 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 283 t2_2 = __vlibm_TBL_sincos_lo[j2+1] - (a1_2*w2 - a2_2*t2); 291 t1_2 = a2_2*w2 + a1_2*t2; 371 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 384 t2_2 = __vlibm_TBL_sincos_lo[j2+1] - (a1_2*w2 - a2_2*t2); 392 t1_2 = a2_2*w2 + a1_2*t2; 464 w2 = x2 * (one + z2 * (pp1 + z2 * pp2)); 477 t2_2 = __vlibm_TBL_sincos_lo[j2+1] - (a1_2*w2 - a2_2*t2); 485 t1_2 = a2_2*w2 725 double fn0, fn1, fn2, a0, a1, a2, w0, w1, w2, y0, y1, y2; local [all...] |
H A D | __vlog.c | 663 } z0, z1, z2, z3, w0, w1, w2, w3; local 674 w2.i[LOWORD] = 0; 720 w2.i[HIWORD] = i2 - e; 733 d2 = z2.d - w2.d;
|
/illumos-gate/usr/src/cmd/power/ |
H A D | sysidpm.sh | 267 ROOT_FSTYPE=`df -n / | (read w1 w2 w3; echo $w3)`
|
/illumos-gate/usr/src/tools/ctf/stabs/common/ |
H A D | genassym.c | 111 ga_parse_common(char *line, int min, int max, char **w1, char **w2, char **w3) argument 117 wret[1] = w2;
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/zfs-include/ |
H A D | spa.h | 270 #define ZIO_SET_CHECKSUM(zcp, w0, w1, w2, w3) \ 274 (zcp)->zc_word[2] = w2; \
|
/illumos-gate/usr/src/cmd/sgs/elfdump/common/ |
H A D | corenote.c | 951 Word w, w2; local 974 w2 = extract_as_word(state, &layout->pr_what); 976 conv_cnote_pr_what(w, w2, 0, &conv_buf.inv)); 1013 w2 = extract_as_word(state, &layout->pr_nsysarg); 1014 print_array(state, &layout->pr_sysarg, SL_FMT_NUM_ZHEX, w2, 1, 1159 Word w, w2; local 1181 w2 = extract_as_word(state, &layout->pr_what); 1183 conv_cnote_pr_what(w, w2, 0, &conv_buf.inv)); 1225 w2 = extract_as_word(state, &layout->pr_nsysarg); 1226 print_array(state, &layout->pr_sysarg, SL_FMT_NUM_ZHEX, w2, [all...] |
/illumos-gate/usr/src/lib/libshell/common/tests/ |
H A D | attributes.sh | 170 w2=world 171 t1="$w1 $w2"
|
/illumos-gate/usr/src/cmd/acct/ |
H A D | wtmpfix.c | 254 setdtab(off_t p, struct futmpx *w1, struct futmpx *w2) argument 263 dp->d_adj = w2->ut_xtime - w1->ut_xtime;
|
/illumos-gate/usr/src/uts/common/io/nxge/ |
H A D | nxge_zcp.c | 61 w_data.w2 = 0; 441 w_data.w2 = 0;
|
/illumos-gate/usr/src/uts/common/io/nxge/npi/ |
H A D | npi_zcp.c | 582 data->w2 = val.w2; 717 NXGE_REG_RD64(handle, ZCP_RAM_DATA2_REG, &val->w2); 741 NXGE_REG_WR64(handle, ZCP_RAM_DATA2_REG, val->w2);
|
/illumos-gate/usr/src/uts/common/io/axf/ |
H A D | axf_usbgem.c | 964 uint8_t w0[2], w1[2], w2[2], w3[2]; local 973 IN(dp, VCMD_READ_SROM, i + 2, 0, 2, w2, &err, usberr); 979 (w2[1] << 8) | w2[0],
|