Home
last modified time | relevance | path

Searched refs:T1 (Results 1 – 22 of 22) sorted by relevance

/illumos-gate/usr/src/common/crypto/sha2/amd64/
H A Dsha512-x86_64.pl136 mov $T1,`$SZ*($i&0xf)`(%rsp)
140 add $h,$T1 # T1+=h
143 add $a0,$T1 # T1+=Sigma1(e)
160 add $T1,$d # d+=T1
163 add $T1,$h # h+=T1
188 mov $T1,$a1
190 shr \$$sigma1[2],$T1
193 xor $a1,$T1
198 add $a0,$T1
202 add `$SZ*($i&0xf)`(%rsp),$T1
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libsum/
H A Dsum-sha2.c465 (d) += T1; \
475 (d) += T1; \
488 (d) += T1; \
582 e = d + T1; in SHA256_Transform()
586 a = T1 + T2; in SHA256_Transform()
605 e = d + T1; in SHA256_Transform()
833 (d) += T1, \
843 (d) += T1; \
856 (d) += T1; \
945 e = d + T1; in SHA512_Transform()
[all …]
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dmain.test275 create table T1(X REAL);
276 insert into T1 values(0.5);
277 insert into T1 values(0.5e2);
278 insert into T1 values(0.5e-002);
279 insert into T1 values(5e-002);
280 insert into T1 values(-5.0e-2);
281 insert into T1 values(-5.1e-2);
282 insert into T1 values(0.5e2);
283 insert into T1 values(0.5E+02);
284 insert into T1 values(5E+02);
[all …]
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c130 uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64]; in SHA256Transform() local
147 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t]; in SHA256Transform()
149 h = g; g = f; f = e; e = d + T1; in SHA256Transform()
150 d = c; c = b; b = a; a = T1 + T2; in SHA256Transform()
161 uint64_t a, b, c, d, e, f, g, h, t, T1, T2, W[80]; in SHA512Transform() local
181 T1 = h + BIGSIGMA1_512(e) + Ch(e, f, g) + SHA512_K[t] + W[t]; in SHA512Transform()
183 h = g; g = f; f = e; e = d + T1; in SHA512Transform()
184 d = c; c = b; b = a; a = T1 + T2; in SHA512Transform()
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dzfs_sha256.c129 uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64]; in SHA256Transform() local
146 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t]; in SHA256Transform()
148 h = g; g = f; f = e; e = d + T1; in SHA256Transform()
149 d = c; c = b; b = a; a = T1 + T2; in SHA256Transform()
160 uint64_t a, b, c, d, e, f, g, h, t, T1, T2, W[80]; in SHA512Transform() local
180 T1 = h + BIGSIGMA1_512(e) + Ch(e, f, g) + SHA512_K[t] + W[t]; in SHA512Transform()
182 h = g; g = f; f = e; e = d + T1; in SHA512Transform()
183 d = c; c = b; b = a; a = T1 + T2; in SHA512Transform()
/illumos-gate/usr/src/lib/libm/common/R/
H A Dtanf.c67 #define T1 C[10] macro
96 return ((float)((y * T0) * (T1 + y * y))); in tanf()
109 z = (y * T0) * (T1 + y * y); in tanf()
150 z = (y * T0) * (T1 + y * y); in tanf()
H A D__tanf.c70 #define T1 q[10] macro
87 z = (x * T0) * (T1 + x * x); in __k_tanf()
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dexpm1l.c123 T1 = +1.666666666666666666666666666660876387437e-1L, variable
161 r = s - t * (T1 + t * (T2 + t * (T3 + t * (T4 + t * T5)))); in expm1l()
180 r = (x - t * (T1 + t * (T2 + t * (T3 + t * (T4 + t * T5))))) - two; in expm1l()
/illumos-gate/usr/src/common/crypto/skein/
H A Dskein_impl.h153 #define Skein_Set_T1(ctxPtr, T1) Skein_Set_Tweak(ctxPtr, 1, T1) argument
156 #define Skein_Set_T0_T1(ctxPtr, T0, T1) \ argument
159 Skein_Set_T1(ctxPtr, (T1)); \
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A DMAPLIB.mk4 * L [ [ G11 ... G1n ] ... [ Gg1 ... Ggn ] ] :MAPLIB: T1.c ... Tn.c
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dtgammaf.c233 static const double T1[] = { /* T1[j]=(j+3)*log(2)-1 */ variable
325 ss = T1[m - 3] + T2[j] + u * (two + A1 * (u * u)); in large_gam()
H A Dtgammal.c316 static const long double T1[] = { variable
670 t4 = T2[j2 + 1] + T1[n2 + 1]; in large_gam()
673 t3 = T2[j2] + T1[n2]; in large_gam()
H A Dtgamma.c835 static const double T1[] = { variable
1258 t4 = T2[j2 + 1] + T1[n2 + 1]; in large_gam()
1261 t3 = T2[j2] + T1[n2]; in large_gam()
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Pg/pod/
H A DPg.pod207 If T1 is the time counters were running during the period and T2 is the time
208 they were turned off, the accuracy is T1 / (T1 + T2), expressed in percentages.
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c109 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_CONST(i) + w; \
110 d += T1; \
112 h = T1 + T2
120 T1 = h + BIGSIGMA1(e) + Ch(e, f, g) + SHA512_CONST(i) + w; \
121 d += T1; \
123 h = T1 + T2
171 uint32_t T1, T2; in SHA256Transform() local
381 uint64_t T1, T2; in SHA512Transform() local
/illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/
H A DREADME.v6171 option, as well as two timers, called T1 (renew) and T2 (rebind),
177 addresses for the client to use and the T1/T2 timer values. Each
260 address (LIF) and IA groupings with shared T1/T2 timers. To
568 T1 or T2 timer.
572 or rebinding state, based on the T1/T2 timers for each IA, and many
581 - Transition from BOUND to RENEWING state when the first T1 timer
584 that are within REN_TIMEOUT (10 seconds) of reaching T1 as well.
587 - When a T1 lease timer expires and we're in RENEWING or REBINDING
599 those other IAs that are past T1 but not yet at T2, we could
607 ignore it, as with the corresponding T1 timer.
[all …]
H A DREADME349 time in the CD_{LEASE,T1,T2}_TIME options in a DHCP packet, as defined
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/documentation/
H A Dstructure.tex20 \usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs
55 commentstyle=\usefont{T1}{pcr}{m}{sl}\color{DarkGreen}, % Style of comments within the code - dark …
/illumos-gate/usr/src/data/hwdata/
H A Dpci.ids15367 001d DataFire RAS T1/E1/PRI
16781 0004 PM/T1
16885 1200 T1 ISDN
17487 0647 Springware D/240JCT-T1
17535 0200 T1 Card
17575 0005 Aculab E1/T1 PCI card
22264 1610 FarSync TE1 (T1,E1)
22275 1610 FarSync TE1 (T1,E1)
23881 0300 A101 single-port T1/E1
23882 0400 A104u Quad T1/E1 AFT
[all …]
H A Dusb.ids896 c8bd Alpermann+Velte Rubidium T1
5732 8003 Portable SSD T1
8753 8105 Artec T1 USB TVBOX (cold)
8754 8106 Artec T1 USB TVBOX (warm)
8755 8107 Artec T1 USB TVBOX with AN2235 (cold)
8756 8108 Artec T1 USB TVBOX with AN2235 (warm)
8757 8109 Artec T1 USB2.0 TVBOX (cold
20841 60f0 UDAD-T1 data acquisition device (boot)
20842 60f1 UDAD-T1 data acquisition device
/illumos-gate/usr/src/data/terminfo/
H A Dtermcap.src14949 :is=\024T1\016:kd=^J:kr=^U:le=^H:me=^N:nd=^\:se=^N:so=^O:\
14950 :ta=^I:up=^_:vb=\024G1\024T1:ve=^TC2:vs=^TC6:
H A Dterminfo.src16873 ed=^K, el=^], flash=\024G1$<200/>\024T1, home=\E^Y, ht=^I,
16874 is2=\024T1\016, kcud1=^J, kcuf1=^U, rmso=^N, sgr0=^N,