Searched refs:t2 (Results 76 - 100 of 368) sorted by relevance

1234567891011>>

/freebsd-current/contrib/kyua/utils/
H A Dauto_array_test.cpp143 auto_array< test_array > t2(t1);
166 auto_array< test_array > t2 = t1; local
248 auto_array< test_array > t2; local
249 t2 = t1;
273 auto_array< test_array > t2; local
274 t2 = t1;
/freebsd-current/crypto/openssh/
H A Dlogintest.c93 time_t t0, t1, t2, logintime, logouttime; local
185 t2 = login_get_lastlog_time(getuid());
186 strlcpy(s_t2, ctime(&t2), sizeof(s_t2));
187 printf("After logging in, lastlog time is %d - %s\n", (int)t2, s_t2);
188 if (t1 == t2)
192 else if (t0 != t2)
H A Drijndael.c765 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
782 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
785 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8];
786 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9];
787 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10];
788 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11];
792 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14];
795 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[16];
796 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17];
797 s2 = Te0[t2 >> 2
[all...]
/freebsd-current/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dtrace.h71 #define DTRACE_PROBE2(name, t1, arg1, t2, arg2) \
74 #define DTRACE_PROBE3(name, t1, arg1, t2, arg2, t3, arg3) \
77 #define DTRACE_PROBE4(name, t1, arg1, t2, arg2, t3, arg3, t4, arg4) \
96 #define DTRACE_PROBE2(name, t1, arg1, t2, arg2) \
99 #define DTRACE_PROBE3(name, t1, arg1, t2, arg2, t3, arg3) \
103 #define DTRACE_PROBE4(name, t1, arg1, t2, arg2, t3, arg3, t4, arg4) \
/freebsd-current/crypto/heimdal/lib/wind/
H A Dgen-errorlist.py51 t2 = rfc4518.read() variable
53 for x in t2.iterkeys():
54 tables[x] = t2[x]
/freebsd-current/contrib/ntp/libntp/lib/isc/unix/
H A Dtime.c239 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2) { argument
240 REQUIRE(t1 != NULL && t2 != NULL);
241 INSIST(t1->nanoseconds < NS_PER_S && t2->nanoseconds < NS_PER_S);
243 if (t1->seconds < t2->seconds)
245 if (t1->seconds > t2->seconds)
247 if (t1->nanoseconds < t2->nanoseconds)
249 if (t1->nanoseconds > t2->nanoseconds)
305 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) { argument
308 REQUIRE(t1 != NULL && t2 != NULL);
309 INSIST(t1->nanoseconds < NS_PER_S && t2
[all...]
/freebsd-current/sys/kern/
H A Dsubr_fattime.c142 unsigned t2, l, m; local
156 t2 = t1 / DAY;
157 if (t2 < T1980) {
161 t2 -= T1980;
164 if (t2 >= ((2100 - 1980) / 4 * LYC + FEB))
165 t2++;
168 l = t2 / LYC;
170 t2 -= l * LYC;
173 m = t2 / 32;
176 while (m < 47 && mtab[m + 1].days <= t2)
[all...]
/freebsd-current/sys/powerpc/fpu/
H A Dfpu_sqrt.c339 #define t2 tt macro
344 t2 = bit;
345 FPU_SUBS(d2, x2, t2);
356 t2 = y2 | bit;
357 FPU_SUBS(d2, x2, t2);
368 #undef t2 macro
370 /* calculate q3. y0, t0, y1, t1 all fixed; y2, t2, almost done. */
371 #define t2 y2 macro
379 FPU_SUBCS(d2, x2, t2);
392 FPU_SUBCS(d2, x2, t2);
[all...]
/freebsd-current/contrib/bearssl/src/symcipher/
H A Daes_small_enc.c87 unsigned t0, t1, t2, t3; local
95 t2 = s0 ^ s1 ^ (s2 << 1) ^ s3 ^ (s3 << 1);
99 state[i + 2] = t2 ^ ((unsigned)(-(int)(t2 >> 8)) & 0x11B);
/freebsd-current/contrib/bearssl/src/ec/
H A Decdsa_i31_vrfy_raw.c43 uint32_t n[I31_LEN], r[I31_LEN], s[I31_LEN], t1[I31_LEN], t2[I31_LEN]; local
118 br_i31_modpow(s, tx, nlen, n, n0i, t1, t2);
131 * t2, encoded in ty.
133 br_i31_montymul(t2, t1, s, n, n0i);
134 br_i31_encode(ty, nlen, t2);
H A Decdsa_i15_vrfy_raw.c43 uint16_t n[I15_LEN], r[I15_LEN], s[I15_LEN], t1[I15_LEN], t2[I15_LEN]; local
119 br_i15_modpow(s, tx, nlen, n, n0i, t1, t2);
132 * t2, encoded in ty.
134 br_i15_montymul(t2, t1, s, n, n0i);
135 br_i15_encode(ty, nlen, t2);
/freebsd-current/tools/test/stress2/misc/
H A Dsymlink.sh78 t2=$((`date +%s` - t1))
81 t2=$((`date +%s` - t1))
82 echo "$t2 seconds elapsed for newfs option \"$i\""
83 [ $t2 -gt 1000 ] && s=111
/freebsd-current/tools/test/stress2/
H A Drun.sh55 t2=`date '+%s'`
56 e=` date -u -j -f '%s' '+%T' $((t2 - t1))`
/freebsd-current/usr.sbin/lastlogin/
H A Dlastlogin.c71 time_t t1, t2; local
74 t2 = ((const struct utmpx *)u2)->ut_tv.tv_sec;
75 return (t1 < t2 ? order : t1 > t2 ? -order : 0);
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Darmv8-mont.pl667 my ($t0,$t1,$t2,$t3)=map("x$_",(14..17));
763 mul $t2,$a3,$a0
769 adcs $acc3,$acc3,$t2
770 mul $t2,$a7,$a0
777 adcs $acc7,$acc7,$t2
778 umulh $t2,$a4,$a0
787 adcs $acc5,$acc5,$t2
788 mul $t2,$a2,$a1 // lo(a[2..7]*a[1]) (ii)
796 adds $acc3,$acc3,$t2
797 mul $t2,
[all...]
H A Darmv4-gf2m.pl253 my ($r,$t0,$t1,$t2,$t3)=map("q$_",(0..3,8..12));
278 vext.8 $t2#lo, $a, $a, #3 @ A3
280 vmull.p8 $t2, $t2#lo, $b @ J = A3*B
290 veor $t2, $t2, $r @ N = I + J
293 veor $t2#lo, $t2#lo, $t2#hi @ t2
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Support/BLAKE3/
H A Dblake3_sse2.c103 __m128i t0, t1, t2, t3, tt; local
112 t2 = _mm_shuffle_ps2(m2, m3, _MM_SHUFFLE(2, 0, 2, 0)); // 14 12 10 8
113 t2 = _mm_shuffle_epi32(t2, _MM_SHUFFLE(2, 1, 0, 3)); // 12 10 8 14
114 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2);
121 m2 = t2;
134 t2 = _mm_unpacklo_epi64(m3, m1);
135 tt = blend_epi16(t2, m2, 0xC0);
136 t2 = _mm_shuffle_epi32(tt, _MM_SHUFFLE(1, 3, 2, 0));
137 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2);
[all...]
H A Dblake3_sse41.c97 __m128i t0, t1, t2, t3, tt; local
106 t2 = _mm_shuffle_ps2(m2, m3, _MM_SHUFFLE(2, 0, 2, 0)); // 14 12 10 8
107 t2 = _mm_shuffle_epi32(t2, _MM_SHUFFLE(2, 1, 0, 3)); // 12 10 8 14
108 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2);
115 m2 = t2;
128 t2 = _mm_unpacklo_epi64(m3, m1);
129 tt = _mm_blend_epi16(t2, m2, 0xC0);
130 t2 = _mm_shuffle_epi32(tt, _MM_SHUFFLE(1, 3, 2, 0));
131 g1(&rows[0], &rows[1], &rows[2], &rows[3], t2);
[all...]
/freebsd-current/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl101 my ($t0,$t1,$t2,$t3,$t4,$t5,$t6,$t7)=(map("%o$_",(0..5)),"%g4","%g5");
191 ld [$ap+8],$t2
199 mulx $t2,$bi,$t2
207 srlx $t2,32,@acc[3]
220 addccc @acc[2],$t2,@acc[2]
222 ld [$ap+8],$t2
284 mulx $t2,$bi,$t2
293 add @acc[2],$t2,
[all...]
/freebsd-current/crypto/openssl/crypto/sha/asm/
H A Dsha256-586.pl419 my ($t1,$t2) = ("ecx","esi");
425 # &mov ($t2,&DWP(32+4*(($i+14)&15),"esp"));
427 &mov ("edi",$t2);
428 &ror ($t2,19-17);
432 &xor ($t2,"edi");
434 &ror ($t2,17);
438 #&xor ("edi",$t2) # sigma1(X[-2])
443 &xor ("edi",$t2) if ($i>=16); # sigma1(X[-2])
444 &mov ($t2,&off($f));
451 &xor ($t2,"ed
[all...]
/freebsd-current/crypto/openssl/crypto/aes/asm/
H A Daes-sparcv9.pl68 $t2="%l6";
208 ld [$key+8],$t2
216 xor $t2,$s2,$s2
219 ld [$key+24],$t2
300 xor $acc8,$t2,$t2
302 xor $acc9,$t2,$t2
304 xor $acc10,$t2,$t2
[all...]
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/
H A Ded25519_ref10.c58 fe25519 t2; local
67 fe25519_sq(t2, t0);
68 fe25519_mul(t1, t1, t2);
69 fe25519_sq(t2, t1);
71 fe25519_sq(t2, t2);
73 fe25519_mul(t1, t2, t1);
74 fe25519_sq(t2, t1);
76 fe25519_sq(t2, t2);
116 fe25519 t2; local
758 ge25519_p1p1 t2, t3, t4, t5, t6, t7, t8; local
1905 fe25519 t0, t1, t2, t3; local
[all...]
/freebsd-current/sys/crypto/rijndael/
H A Drijndael-alg-fst.c862 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
879 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
882 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8];
883 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9];
884 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10];
885 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11];
889 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14];
892 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[16];
893 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17];
894 s2 = Te0[t2 >> 2
1043 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]
/freebsd-current/contrib/ntp/libntp/lib/isc/unix/include/isc/
H A Dtime.h179 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2);
181 * Compare the times referenced by 't1' and 't2'
185 *\li 't1' and 't2' are valid pointers.
189 *\li -1 t1 < t2 (comparing times, not pointers)
190 *\li 0 t1 = t2
191 *\li 1 t1 > t2
227 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2);
229 * Find the difference in microseconds between time t1 and time t2.
230 * t2 is the subtrahend of t1; ie, difference = t1 - t2
[all...]
/freebsd-current/contrib/ntp/libntp/lib/isc/win32/include/isc/
H A Dtime.h166 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2);
168 * Compare the times referenced by 't1' and 't2'
172 * 't1' and 't2' are valid pointers.
176 * -1 t1 < t2 (comparing times, not pointers)
177 * 0 t1 = t2
178 * 1 t1 > t2
214 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2);
216 * Find the difference in milliseconds between time t1 and time t2.
217 * t2 is the subtrahend of t1; ie, difference = t1 - t2
[all...]

Completed in 168 milliseconds

1234567891011>>