Searched refs:t2 (Results 51 - 75 of 664) sorted by relevance

1234567891011>>

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/
H A Dtuple_cat.pass.cpp34 std::tuple<> t2 = std::tuple_cat(t1); local
35 ((void)t2); // Prevent unused warning
58 constexpr std::tuple<> t2 = std::tuple_cat(t1); local
59 ((void)t2); // Prevent unused warning
101 std::tuple<> t2; local
102 std::tuple<> t3 = std::tuple_cat(t1, t2);
107 std::tuple<int> t2(2);
108 std::tuple<int> t3 = std::tuple_cat(t1, t2);
113 std::tuple<int> t2(2);
114 std::tuple<int> t3 = std::tuple_cat(t2, t
235 auto t2 = std::tuple_cat( local
[all...]
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x-fixits.cpp22 struct {T t;} t2 = {700}; local
/external/clang/test/CXX/except/except.spec/
H A Dtemplate.cpp9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}} variable
/external/clang/test/CodeGen/
H A Dms_struct-bitfield-init.c32 } ATTR t2 = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'}; variable in typeref:struct:__anon1839
58 if (sizeof(t2) != 9)
60 if (t2.bar0 != 'a' || t2.bar8 != 'i')
H A Dvla-4.c13 void t2() { function
/external/clang/test/Sema/
H A Dattr-returns-twice.c10 void t2() __attribute__((returns_twice(2))); // expected-error {{'returns_twice' attribute takes no arguments}}
/external/skia/tests/
H A DTypefaceTest.cpp14 SkAutoTUnref<SkTypeface> t2(SkTypeface::RefDefault(SkTypeface::kNormal));
16 REPORTER_ASSERT(reporter, SkTypeface::Equal(t1.get(), t2.get()));
18 REPORTER_ASSERT(reporter, SkTypeface::Equal(0, t2.get()));
20 REPORTER_ASSERT(reporter, SkTypeface::Equal(t2.get(), 0));
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
H A Dsplice_after_flist.pass.cpp22 const T t2[] = {10, 11, 12, 13, 14, 15}; variable
24 const int size_t2 = std::end(t2) - std::begin(t2);
35 assert(*i == t2[n2]);
51 C c2(t2, t2+l);
67 C c2(t2, t2+l);
H A Dmerge.pass.cpp26 const T t2[] = {0, 1, 2, 4, 8, 9, 10, 11, 14, 15}; local
29 C c2(std::begin(t2), std::end(t2));
39 const T t2[] = {0, 1, 2, 4, 8, 9, 10, 11, 14, 15}; local
42 C c2(std::begin(t2), std::end(t2));
H A Dmerge_pred.pass.cpp27 const T t2[] = {15, 14, 11, 10, 9, 8, 4, 2, 1, 0}; local
30 C c2(std::begin(t2), std::end(t2));
40 const T t2[] = {15, 14, 11, 10, 9, 8, 4, 2, 1, 0}; local
43 C c2(std::begin(t2), std::end(t2));
H A Dremove.pass.cpp37 const T t2[] = {5, 5, 5}; local
39 C c2(std::begin(t2), std::end(t2));
56 const T t2[] = {5, 5, 5}; local
58 C c2(std::begin(t2), std::end(t2));
74 const T t2[] = {5, 5, 5}; local
76 C c2(std::begin(t2), std::end(t2));
84 int t2[] local
94 int t2[] = { 2, 3, 5, 8, 11 }; local
111 const T t2[] = {5, 5, 5}; local
130 const T t2[] = {5, 5, 5}; local
148 const T t2[] = {5, 5, 5}; local
[all...]
/external/libcxx/test/std/utilities/time/time.point/time.point.comparisons/
H A Dop_equal.fail.cpp38 T2 t2(Duration2(3000));
39 t1 == t2; local
H A Dop_less.fail.cpp46 T2 t2(Duration2(3000));
47 t1 < t2;
/external/sepolicy/
H A Dmls45 (l1 eq l2 or t1 == mlstrustedsubject or t2 == mlstrustedsubject);
50 (l1 eq l2 or t1 == mlstrustedsubject or t2 == mlstrustedsubject);
70 (t2 != app_data_file or l1 eq l2 or t1 == mlstrustedsubject);
72 (t2 != app_data_file or l1 eq l2 or t1 == mlstrustedsubject);
81 (t2 == app_data_file or l1 dom l2 or t1 == mlstrustedsubject or t2 == mlstrustedobject);
84 (t2 == app_data_file or l1 dom l2 or t1 == mlstrustedsubject or t2 == mlstrustedobject);
89 (t2 == app_data_file or l1 eq l2 or t1 == mlstrustedsubject or t2
[all...]
/external/v8/test/mjsunit/regress/
H A Dpolymorphic-accessor-test-context.js8 function t2() { return this instanceof t2; } function
H A Dregress-binop-nosse2.js155 function t2(a, b) {return a/b} function
156 assertEquals(t2(1,2), 1/2);
157 assertEquals(t2(null,2), 0/2);
158 assertEquals(t2(null,-2), 0/-2);
159 assertEquals(t2(2,null), 2/0);
160 assertEquals(t2(-2,null), -2/0);
161 assertEquals(t2(1,2.4), 1/2.4);
162 assertEquals(t2(1.3,2.4), 1.3/2.4);
163 assertEquals(t2(null,2.4), 0/2.4);
164 assertEquals(t2(1.
[all...]
H A Dregress-binop.js155 function t2(a, b) {return a/b} function
156 assertEquals(t2(1,2), 1/2);
157 assertEquals(t2(null,2), 0/2);
158 assertEquals(t2(null,-2), 0/-2);
159 assertEquals(t2(2,null), 2/0);
160 assertEquals(t2(-2,null), -2/0);
161 assertEquals(t2(1,2.4), 1/2.4);
162 assertEquals(t2(1.3,2.4), 1.3/2.4);
163 assertEquals(t2(null,2.4), 0/2.4);
164 assertEquals(t2(1.
[all...]
/external/valgrind/helgrind/tests/
H A Dhg06_readshared.c13 static void *t2(void *v) function
25 pthread_create(&b, NULL, t2, NULL);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP384R1FieldElement.java140 int[] t2 = Nat.create(12);
147 SecP384R1Field.squareN(t1, 2, t2);
148 SecP384R1Field.multiply(t2, t1, t2);
150 SecP384R1Field.square(t2, t2);
151 SecP384R1Field.multiply(t2, x1, t2);
153 SecP384R1Field.squareN(t2, 5, t3);
154 SecP384R1Field.multiply(t3, t2, t
[all...]
H A DSecP256R1FieldElement.java140 int[] t2 = Nat256.create();
145 SecP256R1Field.squareN(t1, 2, t2);
146 SecP256R1Field.multiply(t2, t1, t2);
148 SecP256R1Field.squareN(t2, 4, t1);
149 SecP256R1Field.multiply(t1, t2, t1);
151 SecP256R1Field.squareN(t1, 8, t2);
152 SecP256R1Field.multiply(t2, t1, t2);
154 SecP256R1Field.squareN(t2, 1
[all...]
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_mutex.cc100 ScopedThread t1, t2; local
105 t2.Lock(m);
106 t2.Write1(l);
107 t2.Unlock(m);
108 t2.Destroy(m);
116 ScopedThread t1, t2; local
121 t2.Lock(m);
122 t2.Write1(l);
123 t2.Unlock(m);
124 t2
132 ScopedThread t1, t2, t3; local
157 ScopedThread t1, t2; local
[all...]
/external/valgrind/none/tests/mips32/
H A Dmips32_dspr2.c81 "move $t2, %2 \n\t" \
82 instruction" $t0, $t1, $t2 \n\t" \
86 : "t0", "t1", "t2" \
551 TESTDSPINST_RD_RT_DSPC("absq_s.qb $t2, $t3", 0x00000286, t2, t3);
555 TESTDSPINST_RD_RT_DSPC("absq_s.qb $t2, $t4", 0xffffffff, t2, t4);
559 TESTDSPINST_RD_RT_DSPC("absq_s.qb $t2, $t3", 0x0555adec, t2, t3);
563 TESTDSPINST_RD_RT_DSPC("absq_s.qb $t2,
[all...]
H A Dmips32_dsp.c558 TESTDSPINST_RD_RT_DSPC("absq_s.ph $t2, $t3", 0x00000286, t2, t3);
562 TESTDSPINST_RD_RT_DSPC("absq_s.ph $t2, $t4", 0xffffffff, t2, t4);
566 TESTDSPINST_RD_RT_DSPC("absq_s.ph $t2, $t3", 0x0555adec, t2, t3);
570 TESTDSPINST_RD_RT_DSPC("absq_s.ph $t2, $t4", 0x55555555, t2, t4);
574 TESTDSPINST_RD_RT_DSPC("absq_s.ph $t2, $t3", 0xbacabaca, t2, t
[all...]
/external/v8/test/cctest/
H A Dtest-disasm-mips.cc101 COMPARE(addu(t2, t3, t4),
102 "016c5021 addu t2, t3, t4");
108 COMPARE(subu(t2, t3, t4),
109 "016c5023 subu t2, t3, t4");
116 COMPARE(mult(t2, t3),
117 "014b0018 mult t2, t3");
123 COMPARE(multu(t2, t3),
124 "014b0019 multu t2, t3");
130 COMPARE(div(t2, t3),
131 "014b001a div t2, t
[all...]
/external/libvorbis/lib/
H A Dsmallft.c117 int t0,t1,t2,t3,t4,t5,t6; local
120 t0=(t2=l1*ido);
123 ch[t1<<1]=cc[t1]+cc[t2];
124 ch[(t1<<1)+t3-1]=cc[t1]-cc[t2];
126 t2+=ido;
133 t2=t0;
135 t3=t2;
152 t2+=ido;
158 t3=(t2=(t1=ido)-1);
159 t2
172 int i,k,t0,t1,t2,t3,t4,t5,t6; local
276 int t0,t1,t2,t3,t4,t5,t6,t7,t8,t9,t10; local
635 int i,k,t0,t1,t2,t3,t4,t5,t6; local
690 int i,k,t0,t1,t2,t3,t4,t5,t6,t7,t8,t9,t10; local
752 int i,k,t0,t1,t2,t3,t4,t5,t6,t7,t8; local
843 int idij,ipph,i,j,k,l,ik,is,t0,t1,t2,t3,t4,t5,t6,t7,t8,t9,t10, local
[all...]

Completed in 668 milliseconds

1234567891011>>