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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
attr-nodebug.cpp 6 void t3() __attribute__((nodebug));
  /external/libcxx/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);
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
tuple_cat.pass.cpp 92 std::tuple<> t3 = std::tuple_cat(t1, t2); local
97 std::tuple<int> t3 = std::tuple_cat(t1, t2); local
98 assert(std::get<0>(t3) == 2);
103 std::tuple<int> t3 = std::tuple_cat(t2, t1); local
104 assert(std::get<0>(t3) == 2);
109 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2); local
110 assert(std::get<0>(t3) == nullptr);
111 assert(std::get<1>(t3) == 2);
116 std::tuple<int, int*> t3 = std::tuple_cat(t2, t1); local
117 assert(std::get<0>(t3) == 2)
123 std::tuple<int*, int, double> t3 = std::tuple_cat(t1, t2); local
131 std::tuple<int, double, int*> t3 = std::tuple_cat(t2, t1); local
139 std::tuple<int*, MoveOnly, int, double> t3 = local
149 std::tuple<int, double, int*, MoveOnly> t3 = local
159 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
170 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
182 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
194 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly> t3 = local
206 std::tuple<MoveOnly, MoveOnly, int*, MoveOnly, int> t3 = local
    [all...]
  /external/libcxx/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
  /external/libcxx/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...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuarticRoot.h 1 int reducedQuarticRoots(const double t4, const double t3, const double t2, const double t1,
QuarticRoot.cpp 33 int reducedQuarticRoots(const double t4, const double t3, const double t2, const double t1,
42 t4, t3, t2, t1, t0);
58 bool t3Or = approximately_zero_when_compared_to(t3, t0)
59 || approximately_zero_when_compared_to(t3, t1)
60 || approximately_zero_when_compared_to(t3, t2);
61 bool t3And = approximately_zero_when_compared_to(t3, t0)
62 && approximately_zero_when_compared_to(t3, t1)
63 && approximately_zero_when_compared_to(t3, t2);
65 SkDebugf("%s t3 or and\n", __FUNCTION__);
69 && approximately_zero_when_compared_to(t0, t3)
    [all...]
  /external/clang/test/PCH/
namespaces.cpp 11 N2::Inner::t3 *ip3 = &int_val;
17 Alias1::t3 *ip4 = &int_val;
18 t3 *ip5 = &int_val;
  /external/chromium_org/third_party/skia/src/pathops/
SkQuarticRoot.h 10 int SkReducedQuarticRoots(const double t4, const double t3, const double t2, const double t1,
SkQuarticRoot.cpp 32 int SkReducedQuarticRoots(const double t4, const double t3, const double t2, const double t1,
42 t4, t3, t2, t1, t0);
51 if (approximately_zero_when_compared_to(t3, t0)
52 && approximately_zero_when_compared_to(t3, t1)
53 && approximately_zero_when_compared_to(t3, t2)) {
56 if (approximately_zero_when_compared_to(t4, t3)) {
57 return SkDCubic::RootsReal(t3, t2, t1, t0, roots);
62 && approximately_zero_when_compared_to(t0, t3)
64 int num = SkDCubic::RootsReal(t4, t3, t2, t1, roots);
74 SkASSERT(approximately_zero_double(t4 + t3 + t2 + t1 + t0) |
    [all...]
  /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:__anon23296
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
atomic-type.c 10 _Atomic(_Atomic(int)*) t3;
11 _Atomic(_Atomic(int)*) *t4[2] = { &t3, 0 };
  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
merge.pass.cpp 27 const T t3[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; local
31 C c3(std::begin(t3), std::end(t3));
40 const T t3[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; local
44 C c3(std::begin(t3), std::end(t3));
merge_pred.pass.cpp 28 const T t3[] = {15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}; local
32 C c3(std::begin(t3), std::end(t3));
41 const T t3[] = {15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}; local
45 C c3(std::begin(t3), std::end(t3));
  /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/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
x86SP_FFT_CToC_FC32_Fwd_Radix4_fs.c 38 OMX_FC32 t3; local
52 // CSUB t3, out1, out3
53 t3.Re = out1[0] - out3[0];
54 t3.Im = out1[n] - out3[n];
64 // CADD_SUB_X out1, t1, t3
65 out1[0] = t1.Re + t3.Im;
66 out1[n] = t1.Im - t3.Re;
68 // CSUB_ADD_X out3, t1, t3
69 out3[0] = t1.Re - t3.Im;
70 out3[n] = t1.Im + t3.Re
    [all...]
x86SP_FFT_CToC_FC32_Inv_Radix4_fs.c 34 OMX_FC32 t3; local
48 // CSUB t3, in1, in3
49 t3.Re = in1[0] - in3[0];
50 t3.Im = in1[n] - in3[n];
60 // CSUB_ADD_X out1, t1, t3
61 out1[0] = t1.Re - t3.Im;
62 out1[n] = t1.Im + t3.Re;
64 // CADD_SUB_X out3, t1, t3
65 out3[0] = t1.Re + t3.Im;
66 out3[n] = t1.Im - t3.Re
    [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/chromium_org/third_party/webrtc/common_audio/signal_processing/
cross_correlation_mips.c 21 int32_t t0 = 0, t1 = 0, t2 = 0, t3 = 0, sum = 0; local
45 "lh %[t3], 2(%[pseq2]) \n\t"
48 "mul %[t2], %[t2], %[t3] \n\t"
73 "lh %[t3], 2(%[pseq2]) \n\t"
76 "mul %[t2], %[t2], %[t3] \n\t"
97 [t2] "=&r" (t2), [t3] "=&r" (t3), [pseq1] "=&r" (pseq1),

Completed in 257 milliseconds

1 2 3 4 5 6 7 8 91011>>