/illumos-gate/usr/src/lib/libm/common/Q/ |
H A D | expm1l.c | 68 * expm1(s)=2s/(2-R), R= s-s^2*(T1+s^2*(T2+s^2*(T3+s^2*(T4+s^2*T5)))) 71 * T2 = -2.777777777777777777777707812093173478756e-3L, 124 T2 = -2.777777777777777777777707812093173478756e-3L, variable 161 r = s - t * (T1 + t * (T2 + t * (T3 + t * (T4 + t * T5)))); 180 r = (x - t * (T1 + t * (T2 + t * (T3 + t * (T4 + t * T5))))) - two;
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | zfs_sha256.c | 129 uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64]; local 147 T2 = BIGSIGMA0_256(a) + Maj(a, b, c); 149 d = c; c = b; b = a; a = T1 + T2; 160 uint64_t a, b, c, d, e, f, g, h, t, T1, T2, W[80]; local 181 T2 = BIGSIGMA0_512(a) + Maj(a, b, c); 183 d = c; c = b; b = a; a = T1 + T2;
|
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/ |
H A D | sha256.c | 130 uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64]; local 148 T2 = BIGSIGMA0_256(a) + Maj(a, b, c); 150 d = c; c = b; b = a; a = T1 + T2; 161 uint64_t a, b, c, d, e, f, g, h, t, T1, T2, W[80]; local 182 T2 = BIGSIGMA0_512(a) + Maj(a, b, c); 184 d = c; c = b; b = a; a = T1 + T2;
|
/illumos-gate/usr/src/lib/libm/common/m9x/ |
H A D | tgammaf.c | 223 * log(x) - 1 = T1(n) + T2(j) + T3(s), where x = 2**n * y, 1<=y<2, 226 * T2(j) = log(z[j]), 239 static const double T2[] = { /* T2[j]=log(1+j/64+1/128) */ variable 325 ss = T1[m - 3] + T2[j] + u * (two + A1 * (u * u));
|
H A D | tgamma.c | 604 * = T1(n) + T2(j) + T3, 606 * where T1(n) = n*log(2)-1 and T2(j) = log(z(j)). Both T1 and T2 can be 635 * (1) Table look-up entries for T1(n) and T2(j), as well as the calculation 644 * T2(j): |_______|______________________| 822 * log(x) - 1 = T1(n) + T2(j) + T3(s), where x = 2**n * y, 1<=y<2, 825 * T2(j) = T2[2j,2j+1] = log(z[j]), 860 static const double T2[] = { variable 1222 * log(x) - 1 = T1(n) + T2( [all...] |
H A D | tgammal.c | 307 * log(x) - 1 = T1(n) + T2(j) + T3(s), where x = 2**n * y, 1<=y<2, 310 * T2(j) = T2[2j,2j+1] = log(z[j]), 342 * T2[2i,2i+1] = log(1+i/64+1/128) 344 static const long double T2[] = { variable 637 * log(x) - 1 = T1(n) + T2(j) + T3(s), where x = 2**n * y, 1<=y<2, 640 * T2(j) = T2[2j,2j+1] = log(z[j]), 649 * T2(j): |_______|______________________| 670 t4 = T2[j [all...] |
/illumos-gate/usr/src/common/crypto/sha2/ |
H A D | sha2.c | 110 T2 = BIGSIGMA0_256(a) + Maj(a, b, c); \ 111 h = T1 + T2 121 T2 = BIGSIGMA0(a) + Maj(a, b, c); \ 122 h = T1 + T2 170 uint32_t T1, T2; local 380 uint64_t T1, T2; local
|
/illumos-gate/usr/src/lib/libsum/common/ |
H A D | sum-sha2.c | 570 sha2_word32 T1, T2, *W256; local 596 T2 = Sigma0_256(a) + Maj(a, b, c); 604 a = T1 + T2; 619 T2 = Sigma0_256(a) + Maj(a, b, c); 627 a = T1 + T2; 643 a = b = c = d = e = f = g = h = T1 = T2 = 0; 935 sha2_word64 T1, T2, *W512 = (sha2_word64*)sha->buffer; local 959 T2 = Sigma0_512(a) + Maj(a, b, c); 967 a = T1 + T2; 982 T2 [all...] |