Searched refs:t2 (Results 251 - 275 of 368) sorted by relevance

<<1112131415

/freebsd-current/contrib/wireguard-tools/
H A Dcurve25519-hacl64.h627 u64 t2 = input[2]; local
632 u64 t2_ = t2 + (t1_ >> 51);
655 u64 t2 = input[2]; local
660 u64 t2_ = t2 + (t1_ >> 51);
718 u64 t2 = input[2]; local
722 u64 o1 = t2 << 38 | t1 >> 13;
723 u64 o2 = t3 << 25 | t2 >> 26;
/freebsd-current/contrib/lua/src/
H A Dltable.c525 ** Exchange the hash part of 't1' and 't2'.
527 static void exchangehashpart (Table *t1, Table *t2) { argument
531 t1->lsizenode = t2->lsizenode;
532 t1->node = t2->node;
533 t1->lastfree = t2->lastfree;
534 t2->lsizenode = lsizenode;
535 t2->node = node;
536 t2->lastfree = lastfree;
H A Dlvm.c566 ** Main operation for equality of Lua values; return 't1 == t2'.
569 int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2) { argument
571 if (ttypetag(t1) != ttypetag(t2)) { /* not the same variant? */
572 if (ttype(t1) != ttype(t2) || ttype(t1) != LUA_TNUMBER)
580 luaV_tointegerns(t2, &i2, F2Ieq) &&
587 case LUA_VNUMINT: return (ivalue(t1) == ivalue(t2));
588 case LUA_VNUMFLT: return luai_numeq(fltvalue(t1), fltvalue(t2));
589 case LUA_VLIGHTUSERDATA: return pvalue(t1) == pvalue(t2);
590 case LUA_VLCF: return fvalue(t1) == fvalue(t2);
591 case LUA_VSHRSTR: return eqshrstr(tsvalue(t1), tsvalue(t2));
[all...]
H A Dloslib.c372 time_t t2 = l_checktime(L, 2); local
373 lua_pushnumber(L, (lua_Number)difftime(t1, t2));
/freebsd-current/crypto/openssl/crypto/camellia/asm/
H A Dcmll-x86.pl91 my $t0=@T[($j)%4],$t1=@T[($j+1)%4],$t2=@T[($j+2)%4],$t3=@T[($j+3)%4];
101 &mov ($t2,&DWP($SBOX1_1110,$Tbl,$idx,8)); # t2=SBOX1_1110[1]
105 &xor ($t2,&DWP($SBOX4_4404,$Tbl,$idx,8)); # t2^=SBOX4_4404[1]
111 &xor ($t2,$t3); # t2^=t3
113 &xor ($t2,&DWP($SBOX2_0222,$Tbl,$idx,8)); # t2^=SBOX2_0222[1]
117 &xor ($t2,
[all...]
/freebsd-current/contrib/bearssl/src/symcipher/
H A Daes_big_dec.c192 uint32_t t0, t1, t2, t3; local
238 t2 = ((uint32_t)iS[s2 >> 24] << 24)
248 s2 = t2 ^ skey[2];
H A Daes_ct64.c47 uint64_t t0, t1, t2, t3, t4, t5, t6, t7, t8, t9; local
95 t2 = y12 & y15;
97 t4 = t3 ^ t2;
99 t6 = t5 ^ t2;
/freebsd-current/contrib/ntp/ntpd/
H A Dntpsim.c271 double t1, t2, t3, t4; /* The four timestamps in the packet */ local
312 t2 ----------------- t3
322 * 2. t2 and t3 are server times according to the simulated server.
323 * Compute t1, t2, t3 and t4
329 t2 = server->server_time + d1;
335 DTOLFP(t2, &lfp_host);
H A Drefclock_bancomm.c228 bcBinTimeT t1, t2; local
231 rc = bcReadBinTime(hnd, &t1, &t2, p3);
234 *pt2 = (uint32_t)t2;
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Dsparct4-mont.pl716 ($t0,$t1,$t2,$t3,$cnt,$tp,$bufsz)=map("%l$_",(0..7));
894 subccc $tj, $nj, $t2 ! tp[j]-np[j]
899 st $t2, [$rp-4] ! reverse order
915 ldx [$rp+0], $t2
918 movcs %icc, $tj, $t2
919 stx $t2, [$rp+0]
966 ($t0,$t1,$t2,$t3,$cnt,$tp,$bufsz,$ccr)=map("%l$_",(0..7));
1146 subccc $tj, $nj, $t2 ! tp[j]-np[j]
1151 st $t2, [$rp-4] ! reverse order
1167 ldx [$rp+0], $t2
[all...]
/freebsd-current/lib/msun/ld128/
H A De_powl.c148 long double yy1, t1, t2, r, s, t, u, v, w; local
360 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h);
367 /* split up y into yy1+y2 and compute (yy1+y2)*(t1+t2) */
373 p_l = (y - yy1) * t1 + y * t2;
/freebsd-current/contrib/wpa/src/common/
H A Dsae.c629 struct crypto_bignum *u2, *t1, *t2, *z, *t, *zero, *one, *two, *three, local
650 t2 = crypto_bignum_init();
662 if (!u2 || !t1 || !t2 || !z || !t || !zero || !one || !two || !three ||
674 * t2 = t1^2
675 * m = t1 = t1 + t2 */
678 crypto_bignum_sqrmod(t1, prime, t2) < 0 ||
679 crypto_bignum_addmod(t1, t2, prime, t1) < 0)
689 if (crypto_bignum_sub(prime, two, t2) < 0 ||
690 crypto_bignum_exptmod(t1, t2, prime, t) < 0)
703 crypto_bignum_inverse(a, prime, t2) <
[all...]
/freebsd-current/contrib/bearssl/src/rsa/
H A Drsa_i31_keygen_inner.c178 uint32_t *a, *t2; local
197 t2 = t + 1 + xlen;
206 t2 ++;
209 mp31(a, xm1d2, xm1d2_len, x, x0i, t2, t2len);
/freebsd-current/crypto/openssl/crypto/sha/asm/
H A Dsha1-x86_64.pl145 $t2="%ecx";
166 mov $a,$t2
169 rol \$5,$t2
172 add $t2,$e
181 mov $a,$t2
184 rol \$5,$t2
190 add $t2,$e
205 mov $a,$t2
208 rol \$5,$t2
212 add $t2,
[all...]
/freebsd-current/sys/dev/sume/
H A Dadapter.h216 uint32_t t2; member in struct:nf_metadata
/freebsd-current/sys/dev/ath/ath_rate/sample/
H A Dsample.h72 uint8_t t2, r2; /* series 2: tries, rate code */ member in struct:txschedule
/freebsd-current/sys/riscv/riscv/
H A Dexception.S61 sd t2, (TF_T + 2 * 8)(sp)
153 ld t2, (TF_T + 2 * 8)(sp)
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Dsv_pow_1u5.c192 svfloat64_t t2 = svadd_x (pg, t1, r); local
194 svfloat64_t lo2 = svadd_x (pg, svsub_x (pg, t1, t2), r);
201 svfloat64_t hi = svadd_x (pg, t2, ar2);
203 svfloat64_t lo4 = svadd_x (pg, svsub_x (pg, t2, hi), ar2);
/freebsd-current/contrib/bsnmp/snmp_mibII/
H A DmibII_tcp.c62 const struct tcp_index *t2 = p2; local
64 return (asn_compare_oid(&t1->index, &t2->index));
/freebsd-current/contrib/wpa/src/utils/
H A Dos_internal.c89 time_t t2 = t; local
91 tm2 = gmtime(&t2);
/freebsd-current/tools/test/stress2/misc/
H A Dbench.sh124 t2(void)
133 snprintf(file, sizeof(file), "t2.%06d.%03d", getpid(), i);
141 snprintf(file, sizeof(file), "t2.%06d.%03d", getpid(), i);
290 functions[1] = &t2;
/freebsd-current/lib/msun/src/
H A De_lgamma_r.c109 t2 = 6.46249402391333854778e-02, /* 0x3FB08B42, 0x94D5419B */ variable
258 p3 = t2+w*(t5+w*(t8+w*(t11+w*t14)));
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_coroutine.lua35 local function eqtab (t1, t2)
36 assert(#t1 == #t2)
39 assert(t2[i] == v)
/freebsd-current/usr.bin/fortune/fortune/
H A Dfortune.c1166 * Merge the tbl data of t2 into t1.
1169 sum_tbl(STRFILE *t1, STRFILE *t2) argument
1171 t1->str_numstr += t2->str_numstr;
1172 if (t1->str_longlen < t2->str_longlen)
1173 t1->str_longlen = t2->str_longlen;
1174 if (t1->str_shortlen > t2->str_shortlen)
1175 t1->str_shortlen = t2->str_shortlen;
/freebsd-current/targets/pseudo/tests/
H A DMakefile.depend277 usr.bin/bmake/tests/basic/t2 \
309 usr.bin/bmake/tests/sysmk/t2 \
310 usr.bin/bmake/tests/sysmk/t2/2 \
311 usr.bin/bmake/tests/sysmk/t2/2/1 \
312 usr.bin/bmake/tests/sysmk/t2/mk \

Completed in 490 milliseconds

<<1112131415