HomeSort by: relevance | last modified time | path
    Searched defs:t2 (Results 1 - 25 of 481) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_lcm.c 24 mp_int t1, t2; local
27 if ((res = mp_init_multi (&t1, &t2, NULL)) != MP_OKAY) {
38 /* store quotient in t2 such that t2 * b is the LCM */
39 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) {
42 res = mp_mul(b, &t2, c);
44 /* store quotient in t2 such that t2 * a is the LCM */
45 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) {
48 res = mp_mul(a, &t2, c)
    [all...]
bn_mp_sqrt.c 24 mp_int t1,t2; local
41 if ((res = mp_init(&t2)) != MP_OKAY) {
49 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
52 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
60 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
63 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
69 /* t1 >= sqrt(arg) >= t2 at this point */
70 } while (mp_cmp_mag(&t1,&t2) == MP_GT);
74 E1: mp_clear(&t2);
bn_mp_n_root.c 32 mp_int t1, t2, t3; local
44 if ((res = mp_init (&t2)) != MP_OKAY) {
56 /* t2 = 2 */
57 mp_set (&t2, 2);
60 /* t1 = t2 */
61 if ((res = mp_copy (&t2, &t1)) != MP_OKAY) {
65 /* t2 = t1 - ((t1**b - a) / (b * t1**(b-1))) */
73 /* t2 = t1**b */
74 if ((res = mp_mul (&t3, &t1, &t2)) != MP_OKAY) {
78 /* t2 = t1**b - a *
    [all...]
bn_mp_exteuclid.c 25 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; local
28 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) {
45 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */
49 if ((err = mp_sub(&u2, &tmp, &t2)) != MP_OKAY) { goto _ERR; }
58 /* (v1,v2,v3) = (t1,t2,t3) */
60 if ((err = mp_copy(&t2, &v2)) != MP_OKAY) { goto _ERR; }
77 _ERR: mp_clear_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL);
bn_mp_karatsuba_sqr.c 29 mp_int x0, x1, t1, t2, x0x0, x1x1; local
49 if (mp_init_size (&t2, a->used * 2) != MP_OKAY)
52 goto T2;
92 if (s_mp_add (&x0x0, &x1x1, &t2) != MP_OKAY)
93 goto X1X1; /* t2 = x0x0 + x1x1 */
94 if (s_mp_sub (&t1, &t2, &t1) != MP_OKAY)
112 T2:mp_clear (&t2);
  /src/external/gpl3/gcc/dist/libgfortran/io/
lock.c 44 namelist_info *t1, *t2; local
53 t2 = t1;
55 free (t2->var_name);
56 if (t2->var_rank)
58 free (t2->dim);
59 free (t2->ls);
61 free (t2);
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
lock.c 44 namelist_info *t1, *t2; local
53 t2 = t1;
55 free (t2->var_name);
56 if (t2->var_rank)
58 free (t2->dim);
59 free (t2->ls);
61 free (t2);
  /src/tests/lib/libpthread/
t_equal.c 56 pthread_t t1, t2; local
59 ATF_REQUIRE(pthread_create(&t2, NULL, func, NULL) == 0);
62 ATF_REQUIRE(pthread_equal(t2, t2) != 0);
63 ATF_REQUIRE(pthread_equal(t1, t2) == 0);
66 ATF_REQUIRE(pthread_join(t2, NULL) == 0);
  /src/crypto/external/bsd/heimdal/dist/lib/wind/
combining.c 46 const struct translation *t2 = (const struct translation *)data; local
48 return t1->key - t2->key;
map.c 49 const struct translation *t2 = (const struct translation *)data; local
51 return t1->key - t2->key;
  /src/crypto/external/bsd/openssl.old/dist/crypto/dh/
dh_gen.c 64 BIGNUM *t1, *t2; local
73 t2 = BN_CTX_get(ctx);
74 if (t2 == NULL)
90 if (!BN_set_word(t2, 11))
96 if (!BN_set_word(t2, 23))
107 if (!BN_set_word(t2, 11))
112 if (!BN_generate_prime_ex(ret->p, prime_len, 1, t1, t2, cb))
  /src/external/bsd/libevent/dist/cmake/
CheckFileOffsetBits.c 8 int t2[(((64 * GB -1) % 671088649) == 268434537) variable
  /src/external/bsd/ntp/dist/sntp/libevent/cmake/
CheckFileOffsetBits.c 9 int t2[(((64 * GB -1) % 671088649) == 268434537) variable
  /src/sys/arch/mmeye/stand/boot/
clock.c 48 int t1, t2, x; local
53 t2 = _reg_read_4(SH_(TCNT0));
54 if (t2 > t1)
55 x -= (t2 - t1 - 1);
57 x -= (t1 - t2);
58 t1 = t2;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_string.cc 44 ScopedThread t1, t2; local
46 t2.Memcpy(data, data2, 10, true);
53 ScopedThread t1, t2; local
55 t2.Memcpy(data+3, data2, 4, true);
62 ScopedThread t1, t2; local
64 t2.Memcpy(data1, data2, 10, true);
70 ScopedThread t1, t2; local
72 t2.Memcpy(data, data1, 10, true);
77 ScopedThread t1, t2; local
79 t2.Memset(data, 2, 10, true)
    [all...]
tsan_test.cc 21 ScopedThread t1, t2; local
24 t2.Call(foo);
25 t2.Call(bar);
26 t2.Write1(l, true);
27 t2.Return();
28 t2.Return();
  /src/external/gpl3/gcc.old/dist/libgcc/config/spu/
float_unssidf.c 35 qword t0, t1, t2, t3, t4, t5, t6, t7; local
38 t2 = si_shl (SI, t0);
41 t5 = si_a (t2, t2);
  /src/lib/libm/src/
e_hypot.c 34 * t1*yy1+((x-y)*(x-y)+(t1*y2+t2*y))
35 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
56 double a=x,b=y,t1,t2,yy1,y2,w; local
106 t2 = a-t1;
107 w = __ieee754_sqrt(t1*t1-(b*(-b)-t2*(a+t1)));
115 t2 = a - t1;
116 w = __ieee754_sqrt(t1*yy1-(w*(-w)-(t1*y2+t2*b)));
e_hypotf.c 27 float a=x,b=y,t1,t2,yy1,y2,w; local
70 t2 = a-t1;
71 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
77 t2 = a - t1;
78 w = __ieee754_sqrtf(t1*yy1-(w*(-w)-(t1*y2+t2*b)));
  /src/sys/dev/ic/
acpipmtimer.c 79 uint32_t t1, t2, t3; local
81 t2 = r(h);
84 t1 = t2;
85 t2 = t3;
87 } while ((t1 > t2) || (t2 > t3));
88 return (t2);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/ed25519/ref10/fe_51/
fe.h 105 uint64_t t0, t1, t2, t3; local
110 t2 = (t[2] >> 26) | (t[3] << 25);
114 STORE64_LE(s + 16, t2);
  /src/tests/lib/libc/gen/
t_time.c 52 time_t t1, t2 = 0; local
54 t1 = time(&t2);
56 if (t1 != t2)
69 time_t t1, t2; local
76 t2 = time(NULL);
79 (int64_t)t1, (int64_t)t2);
81 if (t1 >= t2)
95 time_t t1, t2; local
99 t2 = time(NULL);
104 if (t1 > tv.tv_sec || t2 < tv.tv_sec
    [all...]
  /src/tests/libexec/ld.elf_so/
h_locking.c 96 pthread_t t1, t2; local
107 pthread_create(&t2, NULL, init_fini_helper,
118 pthread_t t1, t2; local
128 pthread_create(&t2, NULL, init_fini_helper,
  /src/crypto/external/apache2/openssl/dist/crypto/dh/
dh_gen.c 159 BIGNUM *t1, *t2; local
178 t2 = BN_CTX_get(ctx);
179 if (t2 == NULL)
195 if (!BN_set_word(t2, 23))
201 if (!BN_set_word(t2, 59))
212 if (!BN_set_word(t2, 11))
217 if (!BN_generate_prime_ex2(ret->params.p, prime_len, 1, t1, t2, cb, ctx))
  /src/crypto/external/apache2/openssl/dist/test/
gmdifftest.c 27 time_t t1, t2; local
31 t2 = t1 + offset;
32 OPENSSL_gmtime(&t2, &tm2);

Completed in 37 milliseconds

1 2 3 4 5 6 7 8 91011>>