Home
last modified time | relevance | path

Searched defs:X (Results 1 – 25 of 2408) sorted by relevance

12345678910>>...97

/external/clang/test/CodeGenCXX/
Dmangle-extreme.cpp3 struct X { }; struct
6 void f(X****************************************, in f() argument
Datomicinit.cpp61 struct X { struct
63 short n;
64 char c;
77 _Atomic(X) c{X(3)}; in _Atomic() argument
91 struct X { struct
92 constexpr X(int n) : n(n) {} in X() function
93 short n;
94 char c = 6;
98 _Atomic(X) c{X(3)}; in _Atomic() argument
/external/google-fruit/extras/benchmark/
Dcompile_time_benchmark.cpp20 #define REPEAT(X) REPEAT_1(X, _) argument
23 #define REPEAT(X) REPEAT_2(X, _) argument
26 #define REPEAT(X) REPEAT_4(X, _) argument
29 #define REPEAT(X) REPEAT_8(X, _) argument
32 #define REPEAT(X) REPEAT_16(X, _) argument
35 #define REPEAT(X) REPEAT_32(X, _) argument
38 #define REPEAT(X) REPEAT_64(X, _) argument
41 #define REPEAT(X) REPEAT_128(X, _) argument
44 #define REPEAT(X) REPEAT_256(X, _) argument
47 #define REPEAT(X) REPEAT_512(X, _) argument
[all …]
Dnew_delete_benchmark.cpp24 #define REPEAT(X) REPEAT_1(X, _) argument
27 #define REPEAT(X) REPEAT_10(X, _) argument
30 #define REPEAT(X) REPEAT_100(X, _) argument
33 #define REPEAT(X) REPEAT_250(X, _) argument
36 #define REPEAT(X) REPEAT_1000(X, _) argument
49 #define META_REPEAT_10(R, X, I) … argument
54 #define META_REPEAT_5(R, X, I) … argument
57 #define REPEAT_1(X, I) X(I) argument
59 #define REPEAT_5(X, I) META_REPEAT_5(REPEAT_1, X, I) argument
61 #define REPEAT_10(X, I) META_REPEAT_10(REPEAT_1, X, I) argument
[all …]
/external/clang/test/SemaTemplate/
Dms-class-specialization-class-scope.cpp6 template<typename T> struct X { typedef int x; }; struct in A
10 …template<> struct X<int>; // expected-error {{explicit specialization of 'A::X<int>' after instant…
15 template<> struct X<double> { struct in A
21 template<> struct X<float> {}; // expected-note {{previous definition is here}} struct in A
22 template<> struct X<float> {}; // expected-error {{redefinition of 'A::X<float>'}} argument
30 template<typename U> struct X { typedef int x; }; struct in B
39 template<> struct X<double> { struct in B
40 typedef int y;
45 template<> struct X<float> {}; // expected-note {{previous definition is here}} struct in B
46 template<> struct X<T> {}; // expected-error {{redefinition of 'X<float>'}} struct in B
/external/arm-trusted-firmware/plat/nvidia/tegra/include/t194/
Dtegra194_ras_private.h33 #define IFU_UNCORR_RAS_ERROR_LIST(X) argument
36 #define JSR_RET_UNCORR_RAS_ERROR_LIST(X) \ argument
44 #define JSR_MTS_UNCORR_RAS_ERROR_LIST(X) \ argument
55 #define LSD_STQ_UNCORR_RAS_ERROR_LIST(X) \ argument
64 #define LSD_DCC_UNCORR_RAS_ERROR_LIST(X) \ argument
74 #define LSD_L1HPF_UNCORR_RAS_ERROR_LIST(X) argument
77 #define L2_UNCORR_RAS_ERROR_LIST(X) \ argument
102 #define CLUSTER_CLOCKS_UNCORR_RAS_ERROR_LIST(X) \ argument
107 #define MMU_UNCORR_RAS_ERROR_LIST(X) argument
110 #define L3_UNCORR_RAS_ERROR_LIST(X) \ argument
[all …]
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
Dp2.cpp3 template<int I, int J, class T> struct X { struct
7 template<int I, int J> struct X<I, J, int> { struct
11 template<int I> struct X<I, I, int> { argument
15 int array0[X<0, 0, float>::value == 0? 1 : -1]; argument
21 struct X { struct
22 static const unsigned value = 1;
26 struct X<T, U, typename T::is_b> { struct
27 static const unsigned value = 2;
31 struct X<T, typename T::is_a, typename T::is_b> { struct
32 static const unsigned value = 3;
/external/libffi/src/x86/
Dasmnames.h4 #define C2(X, Y) X ## Y argument
5 #define C1(X, Y) C2(X, Y) argument
7 # define C(X) C1(__USER_LABEL_PREFIX__, X) argument
9 # define C(X) X argument
13 # define L(X) C1(L, X) argument
15 # define L(X) C1(.L, X) argument
19 # define PLT(X) X@PLT argument
21 # define PLT(X) X argument
25 # define ENDF(X) .type X,@function; .size X, . - X argument
27 # define ENDF(X) argument
/external/clang/test/SemaObjCXX/
Dpropert-dot-error.mm4 struct X { struct
5 X(); argument
6 X(const X&); argument
7 ~X(); field
15 X xval; argument
19 - (void)setx:(X)x; argument
Dliterals.mm71 struct X { struct
72 ConvertibleTo<id> x;
73 ConvertibleTo<id> get();
76 template<typename T> T test_numeric_instantiation() {
100 X x; argument
107 void test_array_literals(T t) {
111 template void test_array_literals(id);
112 template void test_array_literals(NSArray*);
113 …e{{in instantiation of function template specialization 'test_array_literals<int>' requested here}}
116 void test_dictionary_literals(T t, U u) {
[all …]
Dobjc-container-subscripting.mm59 struct X { struct
60 ConvertibleTo<id> x;
61 ConvertibleTo<id> get();
64 NSMutableArray *test_array_convertibility(ConvertibleTo<NSMutableArray*> toArray,
81 id test_dict_convertibility(ConvertibleTo<NSMutableDictionary*> toDict,
103 void test_bad_variadic_array_subscripting(Args ...args) {
109 void test_variadic_array_subscripting(Args ...args) {
113 template void test_variadic_array_subscripting(id arg1, NSMutableArray* arg2, id arg3);
118 void test_variadic_dictionary_subscripting(Index I, Args ...args) {
122 … void test_variadic_dictionary_subscripting(Key *key, id arg1, NSMutableDictionary* arg2, id arg3);
[all …]
/external/clang/test/CodeGen/
D2007-04-11-PR1321.c3 struct X { struct
4 unsigned int e0 : 17;
5 unsigned int e1 : 17;
6 unsigned int e2 : 17;
7 unsigned int e3 : 17;
8 unsigned int e4 : 17;
9 unsigned int e5 : 17;
10 unsigned int e6 : 17;
11 unsigned int e7 : 17;
/external/clang/test/CodeGenObjCXX/
Dnrvo.mm4 struct X { struct
5 X(); field
6 X(const X&); argument
7 ~X(); argument
15 - (X)getNRVO { argument
Dliterals.mm5 struct X { struct
6 X(); field
7 ~X(); argument
24 // CHECK-NEXT: call void @llvm.lifetime.start(i64 8, i8* [[PTR1]]) argument
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.observe/
Dvalue_or.pass.cpp32 struct X struct
36 constexpr X(int i) : i_(i) {} in X() argument
37 constexpr X(X&& x) : i_(x.i_) {x.i_ = 0;} in X() function
38 constexpr X(const Y& y) : i_(y.i_) {} in X() function
39 constexpr X(Y&& y) : i_(y.i_+1) {} in X() function
/external/tensorflow/tensorflow/compiler/xla/tests/
Dtest_macros.h31 #define DISABLED_ON_CPU(X) X argument
32 #define DISABLED_ON_GPU(X) X argument
33 #define DISABLED_ON_GPU_ROCM(X) X argument
34 #define DISABLED_ON_INTERPRETER(X) X argument
35 #define DISABLED_ON_INTERPRETER_TSAN(X) X argument
36 #define DISABLED_ON_DEBUG(X) X argument
48 # define DISABLED_ON_CPU(X) XLA_TEST_PASTE(DISABLED_, X) argument
53 # define DISABLED_ON_GPU(X) XLA_TEST_PASTE(DISABLED_, X) argument
57 # define DISABLED_ON_GPU_ROCM(X) XLA_TEST_PASTE(DISABLED_, X) argument
64 # define DISABLED_ON_INTERPRETER(X) XLA_TEST_PASTE(DISABLED_, X) argument
[all …]
/external/python/cpython2/Include/
Dpymath.h73 # define Py_FORCE_DOUBLE(X) (_Py_force_double(X)) argument
75 # define Py_FORCE_DOUBLE(X) (X) argument
95 #define Py_IS_NAN(X) isnan(X) argument
97 #define Py_IS_NAN(X) ((X) != (X)) argument
115 # define Py_IS_INFINITY(X) isinf(X) argument
117 # define Py_IS_INFINITY(X) ((X) && \ argument
130 #define Py_IS_FINITE(X) isfinite(X) argument
132 #define Py_IS_FINITE(X) finite(X) argument
134 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X)) argument
207 #define Py_OVERFLOWED(X) isinf(X) argument
[all …]
/external/python/cpython3/Include/
Dpymath.h74 # define Py_FORCE_DOUBLE(X) (_Py_force_double(X)) argument
76 # define Py_FORCE_DOUBLE(X) (X) argument
99 #define Py_IS_NAN(X) isnan(X) argument
101 #define Py_IS_NAN(X) ((X) != (X)) argument
119 # define Py_IS_INFINITY(X) isinf(X) argument
121 # define Py_IS_INFINITY(X) ((X) && \ argument
134 #define Py_IS_FINITE(X) isfinite(X) argument
136 #define Py_IS_FINITE(X) finite(X) argument
138 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X)) argument
211 #define Py_OVERFLOWED(X) isinf(X) argument
[all …]
/external/python/cpython3/Lib/ctypes/test/
Dtest_bitfields.py63 class X(Structure): class
74 class X(Structure): class
87 class X(Structure): class
104 class X(Structure): class
157 class X(Structure): class
161 class X(Structure): class
169 class X(Structure): class
175 class X(Structure): class
186 class X(Structure): class
203 class X(Structure): class
[all …]
/external/python/cpython2/Lib/ctypes/test/
Dtest_bitfields.py57 class X(Structure): class
68 class X(Structure): class
81 class X(Structure): class
98 class X(Structure): class
151 class X(Structure): class
155 class X(Structure): class
163 class X(Structure): class
169 class X(Structure): class
180 class X(Structure): class
197 class X(Structure): class
[all …]
/external/mesa3d/src/mesa/drivers/x11/
Dxm_line.c137 #define PLOT(X,Y) XMesaPutPixel(xrb->ximage, X, YFLIP(xrb, Y), pixel ); argument
152 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR4(xrb, X, Y) argument
154 #define PLOT(X,Y) *pixelPtr = pixel; argument
169 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR4(xrb, X, Y) argument
171 #define PLOT(X,Y) *pixelPtr = pixel; argument
186 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR4(xrb, X, Y) argument
188 #define PLOT(X,Y) *pixelPtr = pixel; argument
202 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR3(xrb, X, Y) argument
204 #define PLOT(X,Y) { \ argument
223 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR2(xrb, X, Y) argument
[all …]
/external/mesa3d/src/intel/genxml/
Dgen_macros.h65 # define GENX(X) GEN4_##X argument
68 # define GENX(X) GEN45_##X argument
71 # define GENX(X) GEN5_##X argument
74 # define GENX(X) GEN6_##X argument
77 # define GENX(X) GEN7_##X argument
80 # define GENX(X) GEN75_##X argument
83 # define GENX(X) GEN8_##X argument
86 # define GENX(X) GEN9_##X argument
89 # define GENX(X) GEN11_##X argument
92 # define GENX(X) GEN12_##X argument
/external/libcxx/test/std/containers/associative/map/map.cons/
Ddefault_recursive.pass.cpp18 struct X struct
20 std::map<int, X> m; argument
21 std::map<int, X>::iterator i; argument
22 std::map<int, X>::const_iterator ci; argument
23 std::map<int, X>::reverse_iterator ri; argument
24 std::map<int, X>::const_reverse_iterator cri; argument
/external/libcxx/test/std/containers/associative/multimap/multimap.cons/
Ddefault_recursive.pass.cpp18 struct X struct
20 std::multimap<int, X> m; argument
21 std::multimap<int, X>::iterator i; argument
22 std::multimap<int, X>::const_iterator ci; argument
23 std::multimap<int, X>::reverse_iterator ri; argument
24 std::multimap<int, X>::const_reverse_iterator cri; argument
/external/arm-neon-tests/
Dref_vldX.c37 #define DECL_VLDX(T1, W, N, X) \ in exec_vldX() argument
47 #define TEST_VLDX(Q, T1, T2, W, N, X) \ in exec_vldX() argument
57 #define TEST_EXTRA_CHUNK(T1, W, N, X,Y) \ in exec_vldX() argument
66 #define DECL_ALL_VLDX(X) \ in exec_vldX() argument
89 #define DECL_ALL_VLDX_FP16(X) \ in exec_vldX() argument
94 #define TEST_ALL_VLDX(X) \ in exec_vldX() argument
117 #define TEST_ALL_VLDX_FP16(X) \ in exec_vldX() argument
122 #define TEST_ALL_EXTRA_CHUNKS(X, Y) \ in exec_vldX() argument
145 #define TEST_ALL_EXTRA_CHUNKS_FP16(X, Y) \ in exec_vldX() argument

12345678910>>...97