Searched refs:t2 (Results 1 - 25 of 193) sorted by relevance

12345678

/src/sys/arch/mmeye/stand/boot/
H A Dclock.c48 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/common/lib/libc/arch/alpha/atomic/
H A Datomic_swap.S38 mov a1, t2
39 stl_c t2, 0(a0)
40 beq t2, 2f
50 mov a1, t2
51 stq_c t2, 0(a0)
52 beq t2, 2f
H A Datomic_add.S38 addl t1, a1, t2
39 stl_c t2, 0(a0)
40 beq t2, 2f
50 addl t1, a1, t2
51 mov t2, v0
52 stl_c t2, 0(a0)
53 beq t2, 2f
63 addq t1, a1, t2
64 stq_c t2, 0(a0)
65 beq t2,
[all...]
H A Datomic_and.S38 and t1, a1, t2
39 stl_c t2, 0(a0)
40 beq t2, 2f
50 and t1, a1, t2
51 mov t2, v0
52 stl_c t2, 0(a0)
53 beq t2, 2f
63 and t1, a1, t2
64 stq_c t2, 0(a0)
65 beq t2,
[all...]
H A Datomic_dec.S38 subl t1, 1, t2
39 stl_c t2, 0(a0)
40 beq t2, 2f
50 subl t1, 1, t2
51 mov t2, v0
52 stl_c t2, 0(a0)
53 beq t2, 2f
63 subq t1, 1, t2
64 stq_c t2, 0(a0)
65 beq t2,
[all...]
H A Datomic_inc.S38 addl t1, 1, t2
39 stl_c t2, 0(a0)
40 beq t2, 2f
50 addl t1, 1, t2
51 mov t2, v0
52 stl_c t2, 0(a0)
53 beq t2, 2f
63 addq t1, 1, t2
64 stq_c t2, 0(a0)
65 beq t2,
[all...]
H A Datomic_or.S38 bis t1, a1, t2
39 stl_c t2, 0(a0)
40 beq t2, 2f
50 bis t1, a1, t2
51 mov t2, v0
52 stl_c t2, 0(a0)
53 beq t2, 2f
63 bis t1, a1, t2
64 stq_c t2, 0(a0)
65 beq t2,
[all...]
H A Datomic_cas.S37 1: mov a2, t2
41 stl_c t2, 0(a0)
42 beq t2, 3f
57 1: mov a2, t2
61 stq_c t2, 0(a0)
62 beq t2, 3f
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
H A Dtsan_string.cc44 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
[all...]
H A Dtsan_mop.cc26 ScopedThread t1, t2; local in function:TEST
29 t2.Write1(l2);
33 ScopedThread t1, t2; local in function:TEST
36 t2.Write1(l, true);
40 ScopedThread t1, t2; local in function:TEST
43 t2.Write1(l, true);
47 ScopedThread t1, t2; local in function:TEST
50 t2.Read1(l, true);
54 ScopedThread t1, t2; local in function:TEST
57 t2
62 ScopedThread t1, t2; local in function:TEST
74 ScopedThread t1, t2; local in function:TEST
93 ScopedThread t1, t2; local in function:TEST
108 ScopedThread t1, t2; local in function:TEST
142 ScopedThread t1, t2; local in function:TEST
156 ScopedThread t1, t2; local in function:TEST
181 ScopedThread t1, t2; local in function:TEST
190 ScopedThread t1, t2; local in function:TEST
211 ScopedThread t2; local in function:TEST
[all...]
H A Dtsan_test.cc21 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();
H A Dtsan_mutex.cc100 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
132 ScopedThread t1, t2, t3; local in function:__tsan::TEST
157 ScopedThread t1, t2; local in function:__tsan::TEST
[all...]
/src/lib/libc/arch/riscv/sys/
H A Dsbrk.S43 PTR_L t2, 0(t1)
44 add a0, a0, t2 // compute current break
49 mv a0, t2 // return old val of curbrk from above
/src/tests/lib/libpthread/
H A Dt_equal.c56 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/lib/libc/arch/hppa/string/
H A Dbcmp.S70 copy %t1,%t2
74 ldbs,ma 1(%arg1),%t2
75 comb,<>,n %t1,%t2,$bcmp_exit
81 sub %t1,%t2,%ret0
/src/common/lib/libc/arch/alpha/gen/
H A Dbyte_swap_4.S47 extbl a0, 2, t2 /* t2 = 0x 23 */
50 sll t2, 8, t2 /* t2 = 0x 23 */
52 or t1, t2, t1 /* t1 = 0x 4523 */
/src/common/lib/libc/arch/alpha/string/
H A Dbcopy.S81 ldq_u t2,0(SRCREG)
94 mskqh t2,SRCREG,t2
96 or t2,t3,t2
108 stq_u t2,0(DSTREG)
110 ldq_u t2,8(SRCREG)
118 stq_u t2,0(DSTREG)
122 mskql t2,SIZEREG,t4
143 extql t2,SRCRE
[all...]
H A Dbzero.S48 ldq_u t2,0(a0)
52 bic t2,t0,t2 /* zero those bytes in word */
53 stq_u t2,0(a0)
58 ldq_u t2,0(a0)
60 mskql t2,a0,t2 /* zero bytes (a0%8)..7 in word */
61 stq_u t2,0(a0)
/src/tests/lib/libc/gen/
H A Dt_time.c52 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 < t
[all...]
/src/tests/usr.bin/indent/
H A Dlsym_type.c28 t2 *init_ptr = 0;
/src/sys/arch/alpha/alpha/
H A Dlock_stubs.s61 ldq_l t2, 0(a0)
62 bne t2, 2f
83 ldq_l t2, 0(a0)
84 cmpeq v0, t2, t2
85 beq t2, 2f
154 subl t0, 1, t2 /* mtx_count-- */
156 stl t2, CPU_INFO_MTX_COUNT(a3)
198 addl t0, 1, t2 /* mtx_count++ */
199 stl t2, CPU_INFO_MTX_COUN
[all...]
/src/lib/libc/arch/mips/gen/
H A Dldexp.S80 sll t2, v1, 32 - 20 # get x fraction
81 srl t2, t2, 32 - 20
83 bne t2, zero, 1f
87 * Find out how many leading zero bits are in t2,t3 and put in t9.
89 move v0, t2
91 bne t2, zero, 1f
119 * Now shift t2,t3 the correct number of bits.
129 sll t2, t3, t9
134 sll t2, t
[all...]
/src/sys/arch/hppa/hppa/
H A Dcopy.S103 ldil L%ufetchstore_fault, %t2 ! \
104 ldo R%ufetchstore_fault(%t2), %t2 ! \
106 stw %t2, PCB_ONFAULT(%t1) ! \
107 ldw PCB_SPACE(%t1), %t2 ! \
108 mtsp %t2, %sr1
112 linsn 0(%sr1, %arg0), %t2 ! \
114 sinsn %t2, 0(%arg1) ! \
159 ldil L%L$spstrcpy_fault, %t2
160 ldo R%L$spstrcpy_fault(%t2),
[all...]
/src/sys/arch/mips/mips/
H A Dcache_r5k_subr.S45 INT_L t2, _C_LABEL(mips_cache_info)+MCI_SDCACHE_SIZE
48 beq t2, zero, 3f # if no sdcache, we can bail now
51 PTR_ADDU t2, t1, t2
71 sltu v0, t1, t2
H A Dcache_tx39_subr.S62 mfc0 t2, R3900_COP_0_CONFIG
63 and t1, t1, t2
82 mtc0 t2, R3900_COP_0_CONFIG
109 mfc0 t2, R3900_COP_0_CONFIG
110 and t1, t1, t2
129 mtc0 t2, R3900_COP_0_CONFIG

Completed in 7 milliseconds

12345678