/src/sys/arch/mmeye/stand/boot/ |
clock.c | 48 int t1, t2, x; local in function:delay 53 t2 = _reg_read_4(SH_(TCNT0)); 54 if (t2 > t1) 55 x -= (t2 - t1 - 1); 57 x -= (t1 - t2); 58 t1 = t2;
|
/src/tests/lib/libpthread/ |
t_equal.c | 56 pthread_t t1, t2; local in function:ATF_TC_BODY 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/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/ |
tsan_string.cc | 44 ScopedThread t1, t2; local in function:__tsan::TEST 46 t2.Memcpy(data, data2, 10, true); 53 ScopedThread t1, t2; local in function:__tsan::TEST 55 t2.Memcpy(data+3, data2, 4, true); 62 ScopedThread t1, t2; local in function:__tsan::TEST 64 t2.Memcpy(data1, data2, 10, true); 70 ScopedThread t1, t2; local in function:__tsan::TEST 72 t2.Memcpy(data, data1, 10, true); 77 ScopedThread t1, t2; local in function:__tsan::TEST 79 t2.Memset(data, 2, 10, true) [all...] |
tsan_test.cc | 21 ScopedThread t1, t2; local in function:TEST 24 t2.Call(foo); 25 t2.Call(bar); 26 t2.Write1(l, true); 27 t2.Return(); 28 t2.Return();
|
tsan_mutex.cc | 100 ScopedThread t1, t2; local in function:__tsan::TEST 105 t2.Lock(m); 106 t2.Write1(l); 107 t2.Unlock(m); 108 t2.Destroy(m); 116 ScopedThread t1, t2; local in function:__tsan::TEST 121 t2.Lock(m); 122 t2.Write1(l); 123 t2.Unlock(m); 124 t2.Destroy(m) 132 ScopedThread t1, t2, t3; local in function:__tsan::TEST 157 ScopedThread t1, t2; local in function:__tsan::TEST [all...] |
/src/tests/lib/libc/gen/ |
t_time.c | 52 time_t t1, t2 = 0; local in function:ATF_TC_BODY 54 t1 = time(&t2); 56 if (t1 != t2) 69 time_t t1, t2; local in function:ATF_TC_BODY 76 t2 = time(NULL); 79 (int64_t)t1, (int64_t)t2); 81 if (t1 >= t2) 95 time_t t1, t2; local in function:ATF_TC_BODY 99 t2 = time(NULL); 104 if (t1 > tv.tv_sec || t2 < tv.tv_sec [all...] |
/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 in function:__ieee754_hypot 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 in function:__ieee754_hypotf 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)));
|
e_log.c | 89 double hfsq,f,s,z,R,w,t1,t2,dk; local in function:__ieee754_log 125 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); 127 R = t2+t1;
|
e_log2.c | 38 double hfsq,f,s,z,R,w,t1,t2,dk; local in function:__ieee754_log2 72 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); 74 R = t2+t1;
|
e_log2f.c | 40 float hfsq,f,s,z,R,w,t1,t2,dk; local in function:__ieee754_log2f 73 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); 75 R = t2+t1;
|
e_logf.c | 41 float hfsq,f,s,z,R,w,t1,t2,dk; local in function:__ieee754_logf 76 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7))); 78 R = t2+t1;
|
/src/sys/dev/ic/ |
acpipmtimer.c | 79 uint32_t t1, t2, t3; local in function:acpihwtimer_read_safe 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 in function:fe25519_tobytes 110 t2 = (t[2] >> 26) | (t[3] << 25); 114 STORE64_LE(s + 16, t2);
|
/src/tests/libexec/ld.elf_so/ |
h_locking.c | 96 pthread_t t1, t2; local in function:test_dlopen 107 pthread_create(&t2, NULL, init_fini_helper, 118 pthread_t t1, t2; local in function:test_dlclose 128 pthread_create(&t2, NULL, init_fini_helper,
|
/src/sys/arch/evbarm/tsarm/ |
tsrtc.c | 72 unsigned int t1, t2; local in function:tsrtc_match 95 t2 = bcdtobin(tsrtc_read(sc, MC_SEC)); 96 if (t2 > 59) 100 if ((t1 + 1) % 60 == t2 || (t1 + 2) % 60 == t2)
|
/src/sys/arch/mvmeppc/isa/ |
mkclock_isa.c | 81 unsigned int t1, t2; local in function:mkclock_isa_match 132 t2 = bcdtobin(mkclock_isa_nvrd(sc, MK48T18_CLKOFF + MK48TXX_ISEC)); 133 if (t2 > 59) 137 if ((t1 + 1) % 60 == t2 || (t1 + 2) % 60 == t2)
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_sign/ed25519/ref10/ |
obsolete.c | 76 unsigned char t1[32], t2[32]; local in function:crypto_sign_edwards25519sha512batch_open 108 ge25519_p3_tobytes(t2, &R); 109 if (crypto_verify_32(t1, t2) != 0) {
|
/src/tests/kernel/kqueue/ |
t_scan.c | 83 pthread_t t1, t2; local in function:ATF_TC_BODY 97 ATF_REQUIRE(pthread_create(&t2, NULL, kevent_thread, NULL) == 0); 102 ATF_REQUIRE(pthread_join(t2, &v2) == 0);
|
/src/sbin/nvmectl/ |
humanize_bignum.c | 108 BIGNUM *t1 = NULL, *t2 = NULL; local in function:humanize_bignum 174 if ((t2 = BN_new()) == NULL) 196 if (BN_div(t1, t2, nbytes, divisor, NULL) == 0) 209 if (BN_div(t1, t2, nbytes, divisor, NULL) == 0) 231 if (BN_div(t1, t2, nbytes, BN_value_10(), NULL) == 0) 234 if (BN_div(t1, t2, nbytes, BN_value_10(), NULL) == 0) 240 p2 = BN_bn2dec(t2); 255 if (BN_div(t1, t2, nbytes, BN_value_100(), NULL) == 0) 269 BN_free(t2);
|
/src/sys/arch/m68k/fpe/ |
fpu_sqrt.c | 262 * t2 = y2, t? |= bit' for the appropriate word. Since the bit 324 #define t2 tt macro 329 t2 = bit; 330 FPU_SUBS(d2, x2, t2); 341 t2 = y2 | bit; 342 FPU_SUBS(d2, x2, t2); 353 #undef t2
|
/src/sys/arch/powerpc/fpu/ |
fpu_sqrt.c | 344 #define t2 tt macro 349 t2 = bit; 350 FPU_SUBS(d2, x2, t2); 361 t2 = y2 | bit; 362 FPU_SUBS(d2, x2, t2); 373 #undef t2 375 /* calculate q3. y0, t0, y1, t1 all fixed; y2, t2, almost done. */ 376 #define t2 y2 macro 384 FPU_SUBCS(d2, x2, t2); 397 FPU_SUBCS(d2, x2, t2); [all...] |
/src/sys/arch/sparc/fpu/ |
fpu_sqrt.c | 324 #define t2 tt macro 329 t2 = bit; 330 FPU_SUBS(d2, x2, t2); 341 t2 = y2 | bit; 342 FPU_SUBS(d2, x2, t2); 353 #undef t2 355 /* calculate q3. y0, t0, y1, t1 all fixed; y2, t2, almost done. */ 356 #define t2 y2 macro 364 FPU_SUBCS(d2, x2, t2); 377 FPU_SUBCS(d2, x2, t2); [all...] |
/src/sys/crypto/des/ |
des_setkey.c | 179 register DES_LONG c,d,t,s,t2; local in function:des_set_key_unchecked 224 t2=((t<<16L)|(s&0x0000ffffL))&0xffffffffL; 225 *(k++)=ROTATE(t2,30)&0xffffffffL; 227 t2=((s>>16L)|(t&0xffff0000L)); 228 *(k++)=ROTATE(t2,26)&0xffffffffL;
|
/src/sys/dev/acpi/ |
acpi_timer.c | 143 uint32_t t1, t2, t3; local in function:acpitimer_read_safe 145 (void)AcpiGetTimer(&t2); 149 t1 = t2; 150 t2 = t3; 154 } while ((t1 > t2) || (t2 > t3)); 156 return t2;
|