Searched defs:T0 (Results 1 - 25 of 53) sorted by relevance

123

/external/clang/test/CodeGen/
H A Dstruct-passing.c7 typedef int T0; typedef
10 T0 __attribute__((const)) f0(void);
11 T0 __attribute__((pure)) f1(void);
H A Dbitfield-init.c13 typedef union T0 { char field0 : 2; } T0; typedef in typeref:union:T0
14 T0 T0_values = { 0 };
H A Dunion.c43 typedef union T0 { unsigned int : 0; } T0; typedef in typeref:union:T0
44 T0 t0;
/external/clang/test/Modules/Inputs/
H A Dlinkage-merge-sub.h11 typedef int T0; typedef
/external/clang/test/Sema/
H A DPR2919-builtin-types-compat-strips-crv.c3 typedef struct foo T0; typedef in typeref:struct:foo
6 int a0[__builtin_types_compatible_p(T0,
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/
H A Dconst_pair.pass.cpp24 typedef std::pair<double, char> T0; typedef
26 T0 t0(2.5, 'a');
H A Dconvert_copy.pass.cpp37 typedef std::tuple<double> T0; typedef
39 T0 t0(2.5);
45 typedef std::tuple<double, char> T0; typedef
47 T0 t0(2.5, 'a');
54 typedef std::tuple<double, char, D> T0; typedef
56 T0 t0(2.5, 'a', D(3));
66 typedef std::tuple<double, char, D&> T0; typedef
68 T0 t0(2.5, 'a', d2);
H A Dconvert_move.pass.cpp40 typedef std::tuple<double> T0; typedef
42 T0 t0(2.5);
48 typedef std::tuple<double, char> T0; typedef
50 T0 t0(2.5, 'a');
57 typedef std::tuple<double, char, D> T0; typedef
59 T0 t0(2.5, 'a', D(3));
69 typedef std::tuple<double, char, D&> T0; typedef
71 T0 t0(2.5, 'a', d2);
79 typedef std::tuple<double, char, std::unique_ptr<D>> T0; typedef
81 T0 t
[all...]
H A Dmove_pair.pass.cpp40 typedef std::pair<double, std::unique_ptr<D>> T0; typedef
42 T0 t0(2.5, std::unique_ptr<D>(new D(3)));
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dalloc_const_pair.pass.cpp28 typedef std::pair<double, int> T0; typedef
30 T0 t0(2, 3);
36 typedef std::pair<int, int> T0; typedef
38 T0 t0(2, 3);
46 typedef std::pair<int, int> T0; typedef
48 T0 t0(2, 3);
H A Dalloc_convert_copy.pass.cpp27 typedef std::tuple<double> T0; typedef
29 T0 t0(2.5);
34 typedef std::tuple<int> T0; typedef
36 T0 t0(2);
43 typedef std::tuple<int, int> T0; typedef
45 T0 t0(2, 3);
55 typedef std::tuple<double, int, int> T0; typedef
57 T0 t0(1.5, 2, 3);
H A Dconst_pair.pass.cpp23 typedef std::pair<double, char> T0; typedef
25 T0 t0(2.5, 'a');
H A Dalloc_convert_move.pass.cpp44 typedef std::tuple<int> T0; typedef
46 T0 t0(2);
53 typedef std::tuple<std::unique_ptr<D>> T0; typedef
55 T0 t0(std::unique_ptr<D>(new D(3)));
60 typedef std::tuple<int, std::unique_ptr<D>> T0; typedef
62 T0 t0(2, std::unique_ptr<D>(new D(3)));
70 typedef std::tuple<int, int, std::unique_ptr<D>> T0; typedef
72 T0 t0(1, 2, std::unique_ptr<D>(new D(3)));
H A Dalloc_move_pair.pass.cpp44 typedef std::pair<int, std::unique_ptr<D>> T0; typedef
46 T0 t0(2, std::unique_ptr<D>(new D(3)));
H A Dconvert_move.pass.cpp39 typedef std::tuple<double> T0; typedef
41 T0 t0(2.5);
46 typedef std::tuple<double, char> T0; typedef
48 T0 t0(2.5, 'a');
54 typedef std::tuple<double, char, D> T0; typedef
56 T0 t0(2.5, 'a', D(3));
64 typedef std::tuple<double, char, D&> T0; typedef
66 T0 t0(2.5, 'a', d);
74 typedef std::tuple<double, char, std::unique_ptr<D>> T0; typedef
76 T0 t
[all...]
H A Dmove_pair.pass.cpp39 typedef std::pair<double, std::unique_ptr<D>> T0; typedef
41 T0 t0(2.5, std::unique_ptr<D>(new D(3)));
H A Dconvert_copy.pass.cpp56 typedef std::tuple<double> T0; typedef
58 T0 t0(2.5);
64 typedef std::tuple<double> T0; typedef
66 constexpr T0 t0(2.5);
71 typedef std::tuple<int> T0; typedef
73 constexpr T0 t0(2);
79 typedef std::tuple<double, char> T0; typedef
81 T0 t0(2.5, 'a');
87 typedef std::tuple<double, char, D> T0; typedef
89 T0 t
97 typedef std::tuple<double, char, D&> T0; typedef
107 typedef std::tuple<double, char, int> T0; typedef
[all...]
/external/clang/test/Layout/
H A Dms-x86-misalignedarray.cpp6 struct T0 { char c; }; struct
7 struct T2 : virtual T0 { };
/external/clang/test/SemaCXX/
H A DPR10243.cpp5 struct T0 { struct
7 T0() = default;
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp10.cpp3 typedef const int T0; typedef
8 mutable T0 f1; // expected-error{{'mutable' and 'const' cannot be mixed}}
/external/clang/test/CXX/expr/expr.unary/expr.delete/
H A Dp5.cpp8 class T0; // expected-note {{forward declaration}}
9 void f0(T0 *a) { delete a; } // expected-warning {{deleting pointer to incomplete type}}
10 class T0 { ~T0(); }; class
/external/clang/test/SemaTemplate/
H A Danonymous-union.cpp4 struct T0 { struct
11 struct T1 : public T0, public T {
17 struct A : public T0 { };
/external/chromium_org/third_party/libsrtp/srtp/tables/
H A Daes_tables.c54 uint32_t T0[256], T1[256], T2[256], T3[256], T4[256]; variable
110 T0[i] = tmp.value;
/external/srtp/crypto/cipher/
H A Daes.c51 * we use the tables T0, T1, T2, T3, and T4 to compute AES, and
64 static uint32_t T0[256] = { variable
602 static uint32_t T0[256] = { variable
1509 of state, using the tables T0, T1, T2, T3 */
1511 column0 = T0[state->v8[0]] ^ T1[state->v8[5]]
1514 column1 = T0[state->v8[4]] ^ T1[state->v8[9]]
1517 column2 = T0[state->v8[8]] ^ T1[state->v8[13]]
1520 column3 = T0[state->v8[12]] ^ T1[state->v8[1]]
1637 of state, using the tables T0, T1, T2, T3 */
1639 column0 = T0[stat
[all...]
/external/srtp/tables/
H A Daes_tables.c54 uint32_t T0[256], T1[256], T2[256], T3[256], T4[256]; variable
110 T0[i] = tmp.value;

Completed in 478 milliseconds

123