Searched refs:t1 (Results 1 - 25 of 831) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dattr-noinline.c4 void t1() __attribute__((noinline));
6 void t1() function
H A Dattr-naked.c3 void t1() __attribute__((naked));
7 // CHECK: define void @t1() [[NAKED:#[0-9]+]] {
8 void t1() function
H A Dattr-nodebug.c4 void t1() __attribute__((nodebug));
6 void t1() function
H A Darm-inline-asm.c4 void t1 (void *f, int g) { function
H A D2006-01-16-BitCountIntrinsicsUnsigned.c8 int t1(int X) { function
9 // CHECK: t1
H A Darm-asm.c3 int t1() { function
H A Dms_struct-bitfield-init.c14 } ATTR t1 = {'a', 'b'}; variable in typeref:struct:__anon16834
46 if (sizeof(t1) != 2)
48 if (t1.foo != 'a')
50 if (t1.bar != 'b')
52 t1.foo = 'c';
53 t1.bar = 'd';
54 if (t1.foo != 'c')
56 if (t1.bar != 'd')
/external/valgrind/main/none/tests/mips32/
H A DLoadStore.c23 // sb $t0, 0($t1)
52 // swl $t0, 3($t1)
53 // swr $t0, 0($t1)
61 "swl $t0, 3($t1) \n\t" \
62 "swr $t0, 0($t1) \n\t" \
68 printf("swl $t0, 3($t1)\nswr $t0, 0($t1)\n :: RTval: 0x%x, out: 0x%x\n", \
145 TESTINST1("sb $t0, 0($t1)", 0, 0, t0, t1);
146 TESTINST1("sb $t0, 0($t1)",
[all...]
H A DLoadStore1.c23 // sb $t0, 0($t1)
52 // swl $t0, 3($t1)
53 // swr $t0, 0($t1)
61 "swl $t0, 3($t1) \n\t" \
62 "swr $t0, 0($t1) \n\t" \
68 printf("swl $t0, 3($t1)\nswr $t0, 0($t1)\n :: RTval: 0x%x, out: 0x%x\n", \
145 TESTINST1("sb $t0, 3($t1)", 0, 3, t0, t1);
146 TESTINST1("sb $t0, 5($t1)",
[all...]
H A DMIPS32int.c94 // load $t0, 0($t1)
99 "move $t1, %1\n\t" \
133 TESTINST1("add $t0, $t1, $t2", 0, 0, t0, t1, t2);
134 TESTINST1("add $t0, $t1, $t2", 0, 1, t0, t1, t2);
135 TESTINST1("add $t0, $t1, $t2", 1, 0, t0, t1, t2);
136 TESTINST1("add $t0, $t1, $t2", 1, 1, t0, t1, t
[all...]
H A DLoadStore.stdout.exp2 sb $t0, 0($t1) :: RTval: 0x0, out: 0x0
3 sb $t0, 0($t1) :: RTval: 0x0, out: 0x121f1e00
4 sb $t0, 0($t1) :: RTval: 0x31415927, out: 0x27
5 sb $t0, 0($t1) :: RTval: 0x31415927, out: 0x121f1e27
6 sb $t0, 0($t1) :: RTval: 0x7fffffff, out: 0xff
7 sb $t0, 0($t1) :: RTval: 0x7fffffff, out: 0x121f1eff
8 sb $t0, 0($t1) :: RTval: 0x80000000, out: 0x0
9 sb $t0, 0($t1) :: RTval: 0x80000000, out: 0x121f1e00
10 sb $t0, 2($t1) :: RTval: 0x80000000, out: 0x0
11 sb $t0, 2($t1)
[all...]
H A DLoadStore1.stdout.exp2 sb $t0, 3($t1) :: RTval: 0x0, out: 0x0
3 sb $t0, 3($t1) :: RTval: 0x0, out: 0x0
4 sb $t0, 5($t1) :: RTval: 0x31415927, out: 0x27000000
5 sb $t0, 5($t1) :: RTval: 0x31415927, out: 0x27000000
6 sb $t0, 7($t1) :: RTval: 0x7fffffff, out: 0xff000000
7 sb $t0, 7($t1) :: RTval: 0x7fffffff, out: 0xff000000
8 sb $t0, 1($t1) :: RTval: 0x80000000, out: 0x0
9 sb $t0, 1($t1) :: RTval: 0x80000000, out: 0x1e0000
10 sb $t0, 2($t1) :: RTval: 0x80000000, out: 0x27
11 sb $t0, 2($t1)
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_equal.c42 pthread_equal (pthread_t t1, pthread_t t2) argument
46 * This function returns nonzero if t1 and t2 are equal, else
50 * t1,
56 * This function returns nonzero if t1 and t2 are equal, else
60 * non-zero if t1 and t2 refer to the same thread,
61 * 0 t1 and t2 do not refer to the same thread
72 result = ( t1.p == t2.p && t1.x == t2.x );
/external/clang/test/SemaTemplate/
H A Dfun-template-def.cpp19 T f1(T t1, U u1, int i1) argument
27 i1 = t1[u1];
28 i1 *= t1;
30 i1(u1, t1); // error
31 u1(i1, t1);
37 new U(i1, t1);
38 new int(t1, u1);
39 new (t1, u1) int;
40 delete t1;
42 dummy d1 = sizeof(t1); // expecte
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_sqrt.c22 mp_int t1,t2; local
35 if ((res = mp_init_copy(&t1, arg)) != MP_OKAY) {
44 mp_rshd (&t1,t1.used/2);
46 /* t1 > 0 */
47 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
50 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
53 if ((res = mp_div_2(&t1,&t1)) !
[all...]
/external/clang/test/Sema/
H A Dsign-conversion.c7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}} local
H A Dattr-noinline.c5 void t1() __attribute__((noinline));
/external/clang/test/SemaCXX/
H A Dwarn-char-subscripts.cpp4 void t1() { function
18 t1<char>(); // expected-note {{in instantiation of function template specialization 't1<char>' requested here}}
/external/clang/test/PCH/
H A Dcxx-static_assert.cpp18 T<1> t1; // expected-note {{in instantiation of template class 'T<1>' requested here}} variable
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_mop.cc26 ScopedThread t1, t2; local
28 t1.Write1(l1);
33 ScopedThread t1, t2; local
35 t1.Write1(l);
40 ScopedThread t1, t2; local
42 t1.Read1(l);
47 ScopedThread t1, t2; local
49 t1.Write1(l);
54 ScopedThread t1, t2; local
56 t1
62 ScopedThread t1, t2; local
74 ScopedThread t1, t2; local
93 ScopedThread t1, t2; local
108 ScopedThread t1, t2; local
142 ScopedThread t1, t2; local
156 ScopedThread t1, t2; local
181 ScopedThread t1, t2; local
190 ScopedThread t1, t2; local
209 ScopedThread t1; local
228 ScopedThread t1; local
[all...]
H A Dtsan_thread.cc21 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();
/external/chromium_org/third_party/sqlite/src/test/
H A DcollateA.test23 CREATE TABLE t1(
28 INSERT INTO t1 VALUES(1, 'abcde','abcde');
29 INSERT INTO t1 VALUES(2, 'xyzzy ','xyzzy ');
30 INSERT INTO t1 VALUES(3, 'xyzzy ','xyzzy ');
31 INSERT INTO t1 VALUES(4, 'xyzzy ','xyzzy ');
32 INSERT INTO t1 VALUES(5, ' ', ' ');
33 INSERT INTO t1 VALUES(6, '', '');
34 SELECT count(*) FROM t1;
38 execsql {SELECT a FROM t1 WHERE b='abcde '}
41 execsql {SELECT a FROM t1 WHER
[all...]
/external/fdlibm/
H A De_hypot.c30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
31 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
55 double a=x,b=y,t1,t2,y1,y2,w; local
80 t1=0;
81 __HI(t1) = 0x7fd00000; /* t1=2^1022 */
82 b *= t1;
83 a *= t1;
[all...]
/external/chromium-trace/trace-viewer/src/tracing/
H A Dselection_test.js17 var t1 = p1.getOrCreateThread(1);
18 t1.sliceGroup.pushSlice(
20 t1.sliceGroup.pushSlice(
24 sel.addSlice({}, t1.sliceGroup.slices[0]);
28 assertEquals(t1.sliceGroup.slices[0], sel[0].slice);
30 sel.addSlice({}, t1.sliceGroup.slices[1]);
33 assertEquals(t1.sliceGroup.slices[1], sel[1].slice);
42 var t1 = p1.getOrCreateThread(1);
43 t1.sliceGroup.pushSlice(
45 t1
[all...]
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dasync_slice_group_test.js26 var t1 = new Thread(p1, 1);
28 g.push(newAsyncSlice(0, 1, t1, t1));
29 g.push(newAsyncSlice(1, 1.5, t1, t1));
61 var t1 = new Thread(p1, 1);
62 var s = newAsyncSlice(0, 1, t1, t1);
64 // Replace __T1_GUID__ with t1's actual GUID
65 js = js.replace(/__T1_GUID__/g, t1
[all...]

Completed in 883 milliseconds

1234567891011>>