/illumos-gate/usr/src/common/crypto/sha2/amd64/ |
H A D | sha512-x86_64.pl | 66 @ROT, $A, $B, $C, $D, $E, $F, $G, $H, $T1, $a0, $a1, $a2, $i, 89 ($T1,$a0,$a1,$a2)=("%r12","%r13","%r14","%r15"); 101 ($T1,$a0,$a1,$a2)=("%r12d","%r13d","%r14d","%r15d"); 136 mov $T1,`$SZ*($i&0xf)`(%rsp) 140 add $h,$T1 # T1+=h 143 add $a0,$T1 # T1+=Sigma1(e) 145 add $a2,$T1 # T1 [all...] |
/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/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...] |
/illumos-gate/usr/src/uts/sun4v/niagara_pcbe/ |
H A D | Makefile | 27 # This Makefile builds the UltraSPARC-T1 Performance Counter BackEnd (PCBE). 35 MODULE = pcbe.SUNW,UltraSPARC-T1
|
/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/uts/sun4v/niagara/ |
H A D | Makefile | 41 MODULE = SUNW,UltraSPARC-T1
|
/illumos-gate/usr/src/common/crypto/skein/ |
H A D | skein_impl.h | 153 #define Skein_Set_T1(ctxPtr, T1) Skein_Set_Tweak(ctxPtr, 1, T1) 156 #define Skein_Set_T0_T1(ctxPtr, T0, T1) \ 159 Skein_Set_T1(ctxPtr, (T1)); \
|
/illumos-gate/usr/src/uts/sparc/sys/ |
H A D | Makefile | 68 UltraSPARC-T1.h \
|
/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/cmd/fm/modules/sun4v/cpumem-diagnosis/ |
H A D | cmd_cpu_arch.c | 44 #include <sys/fm/cpu/UltraSPARC-T1.h>
|
H A D | cmd_memerr_arch.c | 48 #include <sys/fm/cpu/UltraSPARC-T1.h> 248 * no higher priority error status bit is set. See UltraSPARC-T1.h for 695 if (strstr(class, "ultraSPARC-T1") != NULL)
|
/illumos-gate/usr/src/cmd/fm/modules/sun4/cpumem-diagnosis/ |
H A D | cmd_cpu.c | 55 #include <sys/fm/cpu/UltraSPARC-T1.h> 70 "ultraSPARC-T1",
|