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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/time/
difftime.c 39 double t1 = time1, t0 = time0; local
40 return t1 - t0;
55 uintmax_t t1 = time1, t0 = time0; local
56 return time0 <= time1 ? t1 - t0 : dminus((double)(t0 - t1));
72 long double t1 = time1, t0 = time0; local
73 return t1 - t0;
  /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) {
31 /* t1 = get the GCD of the two inputs */
32 if ((res = mp_gcd (a, b, &t1)) != MP_OKAY) {
39 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) {
45 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) {
55 mp_clear_multi (&t1, &t2, NULL);
bn_mp_sqrt.c 24 mp_int t1,t2; local
37 if ((res = mp_init_copy(&t1, arg)) != MP_OKAY) {
46 mp_rshd (&t1,t1.used/2);
48 /* t1 > 0 */
49 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
52 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
55 if ((res = mp_div_2(&t1,&t1)) != MP_OKAY)
    [all...]
bn_mp_n_root.c 32 mp_int t1, t2, t3; local
40 if ((res = mp_init (&t1)) != MP_OKAY) {
60 /* t1 = t2 */
61 if ((res = mp_copy (&t2, &t1)) != MP_OKAY) {
65 /* t2 = t1 - ((t1**b - a) / (b * t1**(b-1))) */
67 /* t3 = t1**(b-1) */
68 if ((res = mp_expt_d (&t1, b - 1, &t3)) != MP_OKAY) {
73 /* t2 = t1**b *
    [all...]
  /src/external/bsd/jemalloc/dist/test/include/test/
timer.h 5 nstime_t t1; member in struct:__anon6781
  /src/external/bsd/jemalloc.old/dist/test/include/test/
timer.h 5 nstime_t t1; member in struct:__anon6891
  /src/external/gpl3/gcc/dist/libgfortran/io/
lock.c 44 namelist_info *t1, *t2; local
50 t1 = dtp->u.p.ionml;
51 while (t1 != NULL)
53 t2 = t1;
54 t1 = t1->next;
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
lock.c 44 namelist_info *t1, *t2; local
50 t1 = dtp->u.p.ionml;
51 while (t1 != NULL)
53 t2 = t1;
54 t1 = t1->next;
  /src/tests/lib/libpthread/
t_equal.c 56 pthread_t t1, t2; local
58 ATF_REQUIRE(pthread_create(&t1, NULL, func, NULL) == 0);
61 ATF_REQUIRE(pthread_equal(t1, t1) != 0);
63 ATF_REQUIRE(pthread_equal(t1, t2) == 0);
65 ATF_REQUIRE(pthread_join(t1, NULL) == 0);
  /src/crypto/external/bsd/heimdal/dist/lib/wind/
combining.c 45 const struct translation *t1 = (const struct translation *)key; local
48 return t1->key - t2->key;
map.c 48 const struct translation *t1 = (const struct translation *)key; local
51 return t1->key - t2->key;
  /src/crypto/external/bsd/openssl.old/dist/crypto/dh/
dh_gen.c 64 BIGNUM *t1, *t2; local
72 t1 = BN_CTX_get(ctx);
88 if (!BN_set_word(t1, 24))
94 if (!BN_set_word(t1, 60))
105 if (!BN_set_word(t1, 12))
112 if (!BN_generate_prime_ex(ret->p, prime_len, 1, t1, t2, cb))
  /src/external/lgpl3/gmp/dist/mpn/generic/
gcd_22.c 53 mp_limb_t vgtu, t1, t0; local
54 sub_ddmmss (t1, t0, u1, u0, v1, v0);
55 vgtu = LIMB_HIGHBIT_TO_MASK(t1);
60 if (t1 == 0)
66 count_trailing_zeros (c, t1);
69 v1 += (vgtu & t1);
71 u0 = (t1 ^ vgtu) - vgtu;
88 add_ssaaaa (v1, v0, v1, v0, vgtu & t1, vgtu & t0);
93 u1 = t1 ^ vgtu;
mulmid.c 85 mp_limb_t t0, t1, cy; local
87 t0 = rp[0], t1 = rp[1];
90 MPN_INCR_U (rp + 1, k + 1, t1 + cy);
97 mp_limb_t t0, t1, cy; local
99 t0 = rp[0], t1 = rp[1];
102 MPN_INCR_U (rp + 1, an - bn + 2, t1 + cy);
233 mp_limb_t t0, t1, cy; local
235 t0 = rp[0], t1 = rp[1];
238 MPN_INCR_U (rp + 1, bn + 1, t1 + cy);
247 mp_limb_t t0, t1, cy local
    [all...]
  /src/sys/arch/arm/include/
byte_swap.h 70 uint32_t t1; local
79 t1 = v ^ ((v << 16) | (v >> 16));
80 t1 &= 0xff00ffffU;
82 v ^= (t1 >> 8);
  /src/sys/arch/mmeye/stand/boot/
clock.c 48 int t1, t2, x; local
51 t1 = _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
45 t1.Memcpy(data, data1, 10);
53 ScopedThread t1, t2; local
54 t1.Memcpy(data+5, data1, 1);
62 ScopedThread t1, t2; local
63 t1.Memcpy(data, data1, 10);
70 ScopedThread t1, t2; local
71 t1.Memcpy(data, data1, 10);
77 ScopedThread t1, t2; local
78 t1.Memset(data, 1, 10)
    [all...]
tsan_thread.cc 21 ScopedThread t1; local
22 t1.Write1(l);
28 ScopedThread t1(true);
30 t1.Write1(l);
34 ScopedThread t1; local
36 t1.Write1(l);
37 t1.Detach();
  /src/external/gpl3/gcc.old/dist/libgcc/config/spu/
float_unssidf.c 35 qword t0, t1, t2, t3, t4, t5, t6, t7; local
37 t1 = si_il (1054);
40 t4 = si_sf (t0, t1);
  /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
88 t1=0;
89 SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */
90 b *= t1;
91 a *= t1;
    [all...]
e_hypotf.c 27 float a=x,b=y,t1,t2,yy1,y2,w; local
54 SET_FLOAT_WORD(t1,0x7e800000); /* t1=2^126 */
55 b *= t1;
56 a *= t1;
69 SET_FLOAT_WORD(t1,ha&0xfffff000);
70 t2 = a-t1;
71 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
    [all...]
e_sqrt.c 99 u_int32_t r,t1,s1,ix1,q1; local
154 t1 = s1+r;
156 if((t<ix0)||((t==ix0)&&(t1<=ix1))) {
157 s1 = t1+r;
158 if(((t1&sign)==(u_int32_t)sign)&&(s1&sign)==0) s0 += 1;
160 if (ix1 < t1) ix0 -= 1;
161 ix1 -= t1;
232 y0 := k - T1[31&(k>>15)]. ... y ~ sqrt(x) to 8 bits
233 Here k is a 32-bit integer and T1[] is an integer array containing
238 Value of T1
    [all...]
  /src/sys/crypto/des/
des_cbc.c 195 register DES_LONG t0,t1; local
205 t1=tin1;
218 xor1=t1;
226 t1=tin1;
238 xor1=t1;
  /src/sys/dev/dtv/
dtv_math.c 91 uint32_t t1; local
118 * Calculate "t1 = 1 / t" in the 8.24 fixed-point format.
125 t1 = ((uint64_t)1 << 48) / t;
128 * Calculate "t = ilog2x + t/2 - t1 + 0.5" in the 8.24
141 t = (ilog2x << 24) + (t >> 1) - t1 + (1 << 23);
  /src/sys/dev/ic/
acpipmtimer.c 79 uint32_t t1, t2, t3; local
84 t1 = t2;
87 } while ((t1 > t2) || (t2 > t3));

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>