HomeSort by relevance Sort by last modified time
    Searched refs:t3 (Results 1 - 25 of 311) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
attr-nodebug.cpp 6 void t3() __attribute__((nodebug));
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/type.index/type.index.members/
lt.pass.cpp 26 std::type_index t3 = typeid(long); local
31 if (t1 < t3)
33 assert( (t1 < t3));
34 assert( (t1 <= t3));
35 assert(!(t1 > t3));
36 assert(!(t1 >= t3));
40 assert(!(t1 < t3));
41 assert(!(t1 <= t3));
42 assert( (t1 > t3));
43 assert( (t1 >= t3));
    [all...]
eq.pass.cpp 24 std::type_index t3 = typeid(long); local
26 assert(t1 != t3);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/tuple.creation/
tuple_cat.pass.cpp 66 std::tuple<> t3 = std::tuple_cat(t1, t2); local
71 std::tuple<int> t3 = std::tuple_cat(t1, t2); local
72 assert(std::get<0>(t3) == 2);
77 std::tuple<int> t3 = std::tuple_cat(t2, t1); local
78 assert(std::get<0>(t3) == 2);
83 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2); local
84 assert(std::get<0>(t3) == nullptr);
85 assert(std::get<1>(t3) == 2);
90 std::tuple<int, int*> t3 = std::tuple_cat(t2, t1); local
91 assert(std::get<0>(t3) == 2)
97 std::tuple<int*, int, double> t3 = std::tuple_cat(t1, t2); local
105 std::tuple<int, double, int*> t3 = std::tuple_cat(t2, t1); local
113 std::tuple<int*, MoveOnly, int, double> t3 = local
123 std::tuple<int, double, int*, MoveOnly> t3 = local
133 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
144 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
156 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
168 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
180 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly, int> t3 = local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.rtti/type.info/
type_info.pass.cpp 21 const std::type_info& t3 = typeid(short); local
22 assert(t1 != t3);
25 assert(strcmp(t1.name(), t3.name()) != 0);
type_info_hash.pass.cpp 20 const std::type_info& t3 = typeid(short); local
22 assert(t1.hash_code() != t3.hash_code());
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p1.cpp 9 Tuple<int, float, double> *t3; variable
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.forward/
iosfwd.pass.cpp 20 std::char_traits<unsigned short>* t3 = 0; local
25 std::basic_ios<unsigned short>* t3 = 0; local
30 std::basic_streambuf<unsigned short>* t3 = 0; local
35 std::basic_istream<unsigned short>* t3 = 0; local
40 std::basic_ostream<unsigned short>* t3 = 0; local
45 std::basic_iostream<unsigned short>* t3 = 0; local
50 std::basic_stringbuf<unsigned short>* t3 = 0; local
55 std::basic_istringstream<unsigned short>* t3 = 0; local
60 std::basic_ostringstream<unsigned short>* t3 = 0; local
65 std::basic_stringstream<unsigned short>* t3 = 0 local
70 std::basic_filebuf<unsigned short>* t3 = 0; local
75 std::basic_ifstream<unsigned short>* t3 = 0; local
80 std::basic_ofstream<unsigned short>* t3 = 0; local
85 std::basic_fstream<unsigned short>* t3 = 0; local
90 std::istreambuf_iterator<unsigned short>* t3 = 0; local
95 std::ostreambuf_iterator<unsigned short>* t3 = 0; local
104 std::ostream* t3 = 0; local
110 std::ostringstream* t3 = 0; local
116 std::ofstream* t3 = 0; local
122 std::wostream* t3 = 0; local
128 std::wostringstream* t3 = 0; local
134 std::wofstream* t3 = 0; local
140 std::wstreampos* t3 = 0; local
    [all...]
  /dalvik/vm/mterp/mips/
OP_USHR_LONG_2ADDR.S 7 GET_OPA4(t3) # t3 <- A+
10 EAS2(t3, rFP, t3) # t3 <- &fp[A]
11 LOAD64(a0, a1, t3) # a0/a1 <- vAA/vAA+1
25 STORE64(v0, v1, t3) # vAA/vAA+1 <- a0/a1
OP_SHR_LONG.S 10 GET_OPA(t3) # t3 <- AA
16 EAS2(t3, rFP, t3) # t3 <- &fp[AA]
30 STORE64(v0, v1, t3) # vAA/VAA+1 <- v0/v0
  /external/dropbear/libtommath/
bn_mp_n_root.c 30 mp_int t1, t2, t3; local
46 if ((res = mp_init (&t3)) != MP_OKAY) {
65 /* t3 = t1**(b-1) */
66 if ((res = mp_expt_d (&t1, b - 1, &t3)) != MP_OKAY) {
72 if ((res = mp_mul (&t3, &t1, &t2)) != MP_OKAY) {
82 /* t3 = t1**(b-1) * b */
83 if ((res = mp_mul_d (&t3, b, &t3)) != MP_OKAY) {
87 /* t3 = (t1**b - a)/(b * t1**(b-1)) */
88 if ((res = mp_div (&t2, &t3, &t3, NULL)) != MP_OKAY) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_cor.cpp 229 Word32 t3; local
239 t3 = 0;
250 t3 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p2++), t3);
255 t3 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p2++), t3);
261 *(corr++) = t3 << 1;
  /external/clang/test/PCH/
namespaces.cpp 11 N2::Inner::t3 *ip3 = &int_val;
17 Alias1::t3 *ip4 = &int_val;
18 t3 *ip5 = &int_val;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.ops/
merge.pass.cpp 25 const T t3[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; local
29 C c3(std::begin(t3), std::end(t3));
merge_pred.pass.cpp 26 const T t3[] = {15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}; local
30 C c3(std::begin(t3), std::end(t3));
  /external/clang/test/CXX/except/except.spec/
template.cpp 11 void (*t3)() noexcept = &f2<2>; // no-error
  /external/clang/test/CodeGen/
ms_struct-bitfield-init.c 43 } t3 = {1,2,3,4}; variable in typeref:struct:__anon6386
62 if (sizeof(t3) != 16)
64 if (t3.i1 != 1 || t3.i4 != 4)
vla-4.c 20 void t3(typeof((int (*)[f()]) h()) v) {
  /external/clang/test/Sema/
attr-returns-twice.c 12 typedef void (*t3)(void) __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}} typedef
vector-cast.c 5 typedef float t3 __attribute__ ((vector_size (16))); typedef
11 t3 v3;
17 v3 = (t3)v2;
35 void f3(t3 Y) {
36 f2(Y); // expected-warning {{incompatible vector types passing 't3' to parameter of type 't2'}}
atomic-type.c 10 _Atomic(_Atomic(int)*) t3;
11 _Atomic(_Atomic(int)*) *t4[2] = { &t3, 0 };
  /external/libvorbis/lib/
smallft.c 117 int t0,t1,t2,t3,t4,t5,t6; local
121 t3=ido<<1;
124 ch[(t1<<1)+t3-1]=cc[t1]-cc[t2];
135 t3=t2;
140 t3+=2;
144 tr2=wa1[i-2]*cc[t3-1]+wa1[i-1]*cc[t3];
145 ti2=wa1[i-2]*cc[t3]-wa1[i-1]*cc[t3-1];
158 t3=(t2=(t1=ido)-1)
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...]
  /external/speex/libspeex/
smallft.c 119 int t0,t1,t2,t3,t4,t5,t6; local
123 t3=ido<<1;
126 ch[(t1<<1)+t3-1]=cc[t1]-cc[t2];
137 t3=t2;
142 t3+=2;
146 tr2=wa1[i-2]*cc[t3-1]+wa1[i-1]*cc[t3];
147 ti2=wa1[i-2]*cc[t3]-wa1[i-1]*cc[t3-1];
160 t3=(t2=(t1=ido)-1)
174 int i,k,t0,t1,t2,t3,t4,t5,t6; local
278 int t0,t1,t2,t3,t4,t5,t6,t7,t8,t9,t10; local
637 int i,k,t0,t1,t2,t3,t4,t5,t6; local
692 int i,k,t0,t1,t2,t3,t4,t5,t6,t7,t8,t9,t10; local
754 int i,k,t0,t1,t2,t3,t4,t5,t6,t7,t8; local
845 int idij,ipph,i,j,k,l,ik,is,t0,t1,t2,t3,t4,t5,t6,t7,t8,t9,t10, local
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p9-0x.cpp 53 void test_explicit_spec_extension_targs(tuple<int, float, double> t3) {
54 accept_tuple(t3);
55 accept_tuple<int, float, double>(t3);
56 accept_tuple<int>(t3);
57 accept_tuple<int, float>(t3);
  /external/valgrind/main/memcheck/tests/
origin2-not-quite.c 18 __attribute__((noinline)) int t3(void);
27 x += t3();
50 __attribute__((noinline)) int t3(void) function

Completed in 522 milliseconds

1 2 3 4 5 6 7 8 91011>>