/illumos-gate/usr/src/lib/libm/common/R/ |
H A D | __tanf.c | 56 /* T1 */ 2.999997598248363761541668282006867229939e+00, 70 #define T1 q[10] macro 87 z = (x * T0) * (T1 + x * x);
|
H A D | tanf.c | 67 #define T1 C[10] macro 96 return ((float)((y * T0) * (T1 + y * y))); 109 z = (y * T0) * (T1 + y * y); 150 z = (y * T0) * (T1 + y * y);
|
/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)))) 70 * T1 = 1.666666666666666666666666666660876387437e-1L, 123 T1 = +1.666666666666666666666666666660876387437e-1L, 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 146 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t]; 148 h = g; g = f; f = e; e = d + T1; 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 180 T1 = h + BIGSIGMA1_512(e) + Ch(e, f, g) + SHA512_K[t] + W[t]; 182 h = g; g = f; f = e; e = d + T1; 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 147 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t]; 149 h = g; g = f; f = e; e = d + T1; 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 181 T1 = h + BIGSIGMA1_512(e) + Ch(e, f, g) + SHA512_K[t] + W[t]; 183 h = g; g = f; f = e; e = d + T1; 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, 225 * T1(n-3) = n*log(2)-1, n=3,4,5 233 static const double T1[] = { /* T1[j]=(j+3)*log(2)-1 */ 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 608 * implies 3<=n<=10 implies 1.079.. < T1(n) < 6.931. 635 * (1) Table look-up entries for T1(n) and T2(j), as well as the calculation 642 * T1(n): |_________|___________________| 822 * log(x) - 1 = T1(n) + T2(j) + T3(s), where x = 2**n * y, 1<=y<2, 824 * T1(n) = T1[2n,2n+1] = n*log(2)-1, 835 static const double T1[] variable [all...] |
H A D | tgammal.c | 307 * log(x) - 1 = T1(n) + T2(j) + T3(s), where x = 2**n * y, 1<=y<2, 309 * T1(n) = T1[2n,2n+1] = n*log(2)-1, 316 static const long double T1[] = { variable 637 * log(x) - 1 = T1(n) + T2(j) + T3(s), where x = 2**n * y, 1<=y<2, 639 * T1(n) = T1[2n,2n+1] = n*log(2)-1, 647 * T1(n): |_________|___________________| 670 t4 = T2[j2 + 1] + T1[n2 + 1]; 673 t3 = T2[j2] + T1[n [all...] |
/illumos-gate/usr/src/common/crypto/sha2/ |
H A D | sha2.c | 108 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_CONST(i) + w; \ 109 d += T1; \ 111 h = T1 + T2 119 T1 = h + BIGSIGMA1(e) + Ch(e, f, g) + SHA512_CONST(i) + w; \ 120 d += T1; \ 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 | 481 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \ 483 (d) += T1; \ 484 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \ 491 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \ 493 (d) += T1; \ 494 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \ 504 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \ 506 (d) += T1; \ 507 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \ 512 sha2_word32 T1, *W25 local 570 sha2_word32 T1, T2, *W256; local 880 sha2_word64 T1, *W512 = (sha2_word64*)sha->buffer; local 935 sha2_word64 T1, T2, *W512 = (sha2_word64*)sha->buffer; local [all...] |