/src/lib/libc/time/ |
difftime.c | 39 double t1 = time1, t0 = time0; local in function:difftime 40 return t1 - t0; 55 uintmax_t t1 = time1, t0 = time0; local in function:difftime 56 return time0 <= time1 ? t1 - t0 : dminus((double)(t0 - t1)); 72 long double t1 = time1, t0 = time0; local in function:difftime 73 return t1 - t0;
|
/src/sys/arch/mmeye/stand/boot/ |
clock.c | 48 int t1, t2, x; local in function:delay 51 t1 = _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 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/sys/arch/arm/include/ |
byte_swap.h | 70 uint32_t t1; local in function:__byte_swap_u32_variable 79 t1 = v ^ ((v << 16) | (v >> 16)); 80 t1 &= 0xff00ffffU; 82 v ^= (t1 >> 8);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/ |
tsan_string.cc | 44 ScopedThread t1, t2; local in function:__tsan::TEST 45 t1.Memcpy(data, data1, 10); 53 ScopedThread t1, t2; local in function:__tsan::TEST 54 t1.Memcpy(data+5, data1, 1); 62 ScopedThread t1, t2; local in function:__tsan::TEST 63 t1.Memcpy(data, data1, 10); 70 ScopedThread t1, t2; local in function:__tsan::TEST 71 t1.Memcpy(data, data1, 10); 77 ScopedThread t1, t2; local in function:__tsan::TEST 78 t1.Memset(data, 1, 10) [all...] |
tsan_thread.cc | 21 ScopedThread t1; local in function:TEST 22 t1.Write1(l); 28 ScopedThread t1(true); local in function:TEST 30 t1.Write1(l); 34 ScopedThread t1; local in function:TEST 36 t1.Write1(l); 37 t1.Detach();
|
tsan_test.cc | 21 ScopedThread t1, t2; local in function:TEST 23 t1.Write1(l);
|
tsan_mutex.cc | 100 ScopedThread t1, t2; local in function:__tsan::TEST 102 t1.Lock(m); 103 t1.Write1(l); 104 t1.Unlock(m); 116 ScopedThread t1, t2; local in function:__tsan::TEST 118 t1.Lock(m); 119 t1.Write1(l); 120 t1.Unlock(m); 132 ScopedThread t1, t2, t3; local in function:__tsan::TEST 134 t1.Lock(m) 157 ScopedThread t1, t2; local in function:__tsan::TEST 183 ScopedThread t1; local in function:__tsan::TEST 206 ScopedThread t1; 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 74 t1 = time(NULL); 79 (int64_t)t1, (int64_t)t2); 81 if (t1 >= t2) 95 time_t t1, t2; local in function:ATF_TC_BODY 97 t1 = time(NULL); 102 (int64_t)t1, (int64_t)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 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 in function:__ieee754_hypotf 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 in function:__ieee754_sqrt 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...] |
e_log.c | 89 double hfsq,f,s,z,R,w,t1,t2,dk; local in function:__ieee754_log 124 t1= w*(Lg2+w*(Lg4+w*Lg6)); 127 R = t2+t1;
|
e_log2.c | 38 double hfsq,f,s,z,R,w,t1,t2,dk; local in function:__ieee754_log2 71 t1= w*(Lg2+w*(Lg4+w*Lg6)); 74 R = t2+t1;
|
/src/sys/crypto/des/ |
des_cbc.c | 195 register DES_LONG t0,t1; local in function:des_ede3_cbc_encrypt 205 t1=tin1; 218 xor1=t1; 226 t1=tin1; 238 xor1=t1;
|
/src/sys/dev/dtv/ |
dtv_math.c | 91 uint32_t t1; local in function:dtv_intlog10 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 in function:acpihwtimer_read_safe 84 t1 = t2; 87 } while ((t1 > t2) || (t2 > t3));
|
/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 109 t1 = (t[1] >> 13) | (t[2] << 38); 113 STORE64_LE(s + 8, t1);
|
/src/tests/lib/libc/string/ |
t_strcat.c | 25 unsigned int a0, a1, t0, t1; local in function:ATF_TC_BODY 89 for (t1 = 0; t1 < __arraycount(tab); ++t1) { 93 memcpy(&buf1[a1], tab[t1].val, 94 tab[t1].len + 1); 104 "t0 %d, t1 %d\n", 105 a0, a1, t0, t1); 113 tab[t1].len + 1) != 0) { 115 "t0 %d, t1 %d\n" [all...] |
/src/tests/libexec/ld.elf_so/ |
h_locking.c | 96 pthread_t t1, t2; local in function:test_dlopen 100 pthread_create(&t1, NULL, init_fini_helper, 118 pthread_t t1, t2; local in function:test_dlclose 122 pthread_create(&t1, NULL, init_fini_helper,
|
/src/sys/arch/evbarm/tsarm/ |
tsrtc.c | 72 unsigned int t1, t2; local in function:tsrtc_match 89 t1 = bcdtobin(tsrtc_read(sc, MC_SEC)); 90 if (t1 > 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 124 t1 = bcdtobin(mkclock_isa_nvrd(sc, MK48T18_CLKOFF + MK48TXX_ISEC)); 125 if (t1 > 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 105 ge25519_tobytes(t1, &cs); 106 t1[31] ^= 1 << 7; 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 96 ATF_REQUIRE(pthread_create(&t1, NULL, kevent_thread, NULL) == 0); 99 ATF_REQUIRE(pthread_join(t1, &v1) == 0);
|
/src/sys/kern/ |
kern_cctr.c | 57 * T1 = local CC 59 * Tavg = (T0 + T1) / 2 66 * Tavg->T1 involves a store-relaxed and a store-release. It would be 68 * non-0 (i.e. just wait for a single store-release from Tavg->T1), but 206 int64_t t0, t1, tcenter = 0; local in function:cc_get_delta 219 t1 = cpu_counter32(); 221 if (t1 < t0) { 226 /* average t0 and t1 without overflow: */ 227 tcenter = (t0 >> 1) + (t1 >> 1); 228 if ((t0 & 1) + (t1 & 1) == 2 [all...] |