Searched refs:T0 (Results 1 - 25 of 135) sorted by relevance

123456

/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/clang/test/CodeGen/
H A Dbitfield-init.c13 typedef union T0 { char field0 : 2; } T0; typedef in typeref:union:T0
14 T0 T0_values = { 0 };
H A Dstruct-passing.c7 typedef int T0; typedef
10 T0 __attribute__((const)) f0(void);
11 T0 __attribute__((pure)) f1(void);
H A Dunion.c43 typedef union T0 { unsigned int : 0; } T0; typedef in typeref:union:T0
44 T0 t0;
/external/clang/test/Layout/
H A Dms-x86-misalignedarray.cpp6 struct T0 { char c; }; struct
7 struct T2 : virtual T0 { };
/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/SemaCXX/
H A DPR10243.cpp5 struct T0 { struct
7 T0() = default;
/external/aac/libAACdec/src/
H A Dusacdec_ace_ltp.h112 * \param T0 integer part of decoded pitch lag (input)
116 int T0, /* input : integer pitch lag */
/external/clang/test/Modules/Inputs/
H A Dlinkage-merge-sub.h11 typedef int T0; typedef
/external/clang/test/SemaTemplate/
H A Danonymous-union.cpp4 struct T0 { struct
11 struct T1 : public T0, public T { //expected-warning{{direct base 'T0' is inaccessible due to ambiguity:\n struct T1<struct A> -> struct T0\n struct T1<struct A> -> struct A -> struct T0}}
17 struct A : public T0 { };
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
H A Dconst_pair.pass.cpp26 typedef std::pair<long, char> T0; typedef
28 T0 t0(2, 'a');
H A Dconvert_copy.pass.cpp39 typedef std::tuple<long> T0; typedef
41 T0 t0(2);
47 typedef std::tuple<long, char> T0; typedef
49 T0 t0(2, 'a');
56 typedef std::tuple<long, char, D> T0; typedef
58 T0 t0(2, 'a', D(3));
68 typedef std::tuple<long, char, D&> T0; typedef
70 T0 t0(2, 'a', d2);
H A Dconvert_move.pass.cpp50 typedef std::tuple<long> T0; typedef
52 T0 t0(2);
58 typedef std::tuple<long, char> T0; typedef
60 T0 t0(2, 'a');
67 typedef std::tuple<long, char, D> T0; typedef
69 T0 t0(2, 'a', D(3));
79 typedef std::tuple<long, char, D&> T0; typedef
81 T0 t0(2, 'a', d2);
89 typedef std::tuple<long, char, std::unique_ptr<D>> T0; typedef
91 T0 t
[all...]
H A Dmove_pair.pass.cpp42 typedef std::pair<long, std::unique_ptr<D>> T0; typedef
44 T0 t0(2, std::unique_ptr<D>(new D(3)));
/external/tensorflow/tensorflow/core/kernels/
H A Dcwise_ops_gpu_gradients.cu.h52 // (T0, T1, etc.) for SimpleBiaryFunctor (e.g., functor::tanh_grad).
55 #define DEFINE_SIMPLE_BINARY2(F, T0, T1) \
56 DEFINE_SIMPLE_BINARY1(F, T0); \
58 #define DEFINE_SIMPLE_BINARY3(F, T0, T1, T2) \
59 DEFINE_SIMPLE_BINARY2(F, T0, T1); \
61 #define DEFINE_SIMPLE_BINARY4(F, T0, T1, T2, T3) \
62 DEFINE_SIMPLE_BINARY2(F, T0, T1); \
64 #define DEFINE_SIMPLE_BINARY5(F, T0, T1, T2, T3, T4) \
65 DEFINE_SIMPLE_BINARY2(F, T0, T1); \
H A Dcwise_ops_gpu_common.cu.h119 // (T0, T1, etc.) for UnaryFunctor (e.g., functor::sqrt).
121 #define DEFINE_UNARY2(F, T0, T1) \
122 DEFINE_UNARY1(F, T0); \
124 #define DEFINE_UNARY3(F, T0, T1, T2) \
125 DEFINE_UNARY2(F, T0, T1); \
127 #define DEFINE_UNARY4(F, T0, T1, T2, T3) \
128 DEFINE_UNARY2(F, T0, T1); \
130 #define DEFINE_UNARY5(F, T0, T1, T2, T3, T4) \
131 DEFINE_UNARY2(F, T0, T1); \
133 #define DEFINE_UNARY6(F, T0, T
[all...]
H A Dcwise_ops_sycl_common.h111 // (T0, T1, etc.) for UnaryFunctor (e.g., functor::sqrt).
113 #define DEFINE_UNARY2(F, T0, T1) \
114 DEFINE_UNARY1(F, T0); \
116 #define DEFINE_UNARY3(F, T0, T1, T2) \
117 DEFINE_UNARY2(F, T0, T1); \
119 #define DEFINE_UNARY4(F, T0, T1, T2, T3) \
120 DEFINE_UNARY2(F, T0, T1); \
122 #define DEFINE_UNARY5(F, T0, T1, T2, T3, T4) \
123 DEFINE_UNARY2(F, T0, T1); \
127 // (T0, T
[all...]
/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/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dalloc_convert_copy.pass.cpp40 typedef std::tuple<long> T0; typedef
42 T0 t0(2);
47 typedef std::tuple<int> T0; typedef
49 T0 t0(2);
56 typedef std::tuple<int, int> T0; typedef
58 T0 t0(2, 3);
68 typedef std::tuple<long, int, int> T0; typedef
70 T0 t0(1, 2, 3);
H A Dalloc_const_pair.pass.cpp30 typedef std::pair<long, int> T0; typedef
32 T0 t0(2, 3);
38 typedef std::pair<int, int> T0; typedef
40 T0 t0(2, 3);
48 typedef std::pair<int, int> T0; typedef
50 T0 t0(2, 3);
H A Dconvert_move.pass.cpp51 typedef std::tuple<long> T0; typedef
53 T0 t0(2);
58 typedef std::tuple<long, char> T0; typedef
60 T0 t0(2, 'a');
66 typedef std::tuple<long, char, D> T0; typedef
68 T0 t0(2, 'a', D(3));
76 typedef std::tuple<long, char, D&> T0; typedef
78 T0 t0(2, 'a', d);
86 typedef std::tuple<long, char, std::unique_ptr<D>> T0; typedef
88 T0 t
[all...]
H A Dconvert_copy.pass.cpp71 typedef std::tuple<long> T0; typedef
73 T0 t0(2);
79 typedef std::tuple<int> T0; typedef
81 constexpr T0 t0(2);
86 typedef std::tuple<int> T0; typedef
88 constexpr T0 t0(2);
94 typedef std::tuple<long, char> T0; typedef
96 T0 t0(2, 'a');
102 typedef std::tuple<long, char, D> T0; typedef
104 T0 t
112 typedef std::tuple<long, char, D&> T0; typedef
122 typedef std::tuple<long, char, int> T0; typedef
[all...]
H A Dalloc_convert_move.pass.cpp56 typedef std::tuple<int> T0; typedef
58 T0 t0(2);
65 typedef std::tuple<std::unique_ptr<D>> T0; typedef
67 T0 t0(std::unique_ptr<D>(new D(3)));
72 typedef std::tuple<int, std::unique_ptr<D>> T0; typedef
74 T0 t0(2, std::unique_ptr<D>(new D(3)));
82 typedef std::tuple<int, int, std::unique_ptr<D>> T0; typedef
84 T0 t0(1, 2, std::unique_ptr<D>(new D(3)));
H A Dmove_pair.pass.cpp41 typedef std::pair<long, std::unique_ptr<D>> T0; typedef
43 T0 t0(2, std::unique_ptr<D>(new D(3)));
/external/eigen/Eigen/src/Core/functors/
H A DStlFunctors.h96 template<typename T0,typename T1>
97 struct functor_traits<std::project1st<T0,T1> >
100 template<typename T0,typename T1>
101 struct functor_traits<std::project2nd<T0,T1> >
104 template<typename T0,typename T1>
105 struct functor_traits<std::select2nd<std::pair<T0,T1> > >
108 template<typename T0,typename T1>
109 struct functor_traits<std::select1st<std::pair<T0,T1> > >
112 template<typename T0,typename T1>
113 struct functor_traits<std::unary_compose<T0,T
[all...]

Completed in 1405 milliseconds

123456