/external/llvm-project/polly/lib/External/isl/ |
D | isl_union_templ.c | 14 #define TYPE UNION 18 __isl_give UNION *FN(UNION,cow)(__isl_take UNION *u); 20 isl_ctx *FN(UNION,get_ctx)(__isl_keep UNION *u) in FN() argument 27 static __isl_keep isl_space *FN(UNION,peek_space)(__isl_keep UNION *u) in FN() argument 36 __isl_give isl_space *FN(UNION,get_space)(__isl_keep UNION *u) in FN() argument 38 return isl_space_copy(FN(UNION,peek_space)(u)); in FN() 44 isl_size FN(UNION,dim)(__isl_keep UNION *u, enum isl_dim_type type) in FN() argument 50 isl_die(FN(UNION,get_ctx)(u), isl_error_invalid, in FN() 60 int FN(UNION,find_dim_by_name)(__isl_keep UNION *u, enum isl_dim_type type, in FN() argument 70 static __isl_give UNION *FN(UNION,alloc)(__isl_take isl_space *space in FN() argument [all …]
|
D | isl_union_multi.c | 23 * Each UNION has its own groups, so there can only ever be a single 26 S(UNION,group) { in S() argument 31 /* A union of expressions defined over different disjoint domains. 36 struct UNION { struct 46 S(UNION,foreach_group_data) in S() argument 48 isl_stat (*fn)(__isl_keep S(UNION,group) *group, void *user); in S() 54 static isl_stat FN(UNION,call_on_group)(void **entry, void *user) in FN() argument 56 S(UNION,group) *group = *entry; in FN() 57 S(UNION,foreach_group_data) *data; in FN() 59 data = (S(UNION,foreach_group_data) *) user; in FN() [all …]
|
D | isl_union_single.c | 16 /* A union of expressions defined over different domain spaces. 20 struct UNION { struct 32 isl_size FN(FN(UNION,n),BASE)(__isl_keep UNION *u) in FN() argument 37 S(UNION,foreach_data) in S() argument 43 static isl_stat FN(UNION,call_on_copy)(void **entry, void *user) in FN() argument 46 S(UNION,foreach_data) *data = (S(UNION,foreach_data) *)user; in FN() 54 isl_stat FN(FN(UNION,foreach),BASE)(__isl_keep UNION *u, in FN() argument 57 S(UNION,foreach_data) data = { fn, user }; in FN() 63 &FN(UNION,call_on_copy), &data); in FN() 68 static isl_bool FN(UNION,has_same_domain_space)(const void *entry, in FN() argument [all …]
|
/external/strace/m4/ |
D | bpf_attr.m4 | 25 union bpf_attr.attach_bpf_fd, 26 union bpf_attr.attach_flags, 27 union bpf_attr.attach_type, 28 union bpf_attr.bpf_fd, 29 union bpf_attr.dummy, 30 union bpf_attr.expected_attach_type, 31 union bpf_attr.file_flags, 32 union bpf_attr.flags, 33 union bpf_attr.info.bpf_fd, 34 union bpf_attr.info.info, [all …]
|
/external/llvm/test/CodeGen/Thumb2/ |
D | ldr-str-imm12.ll | 7 %2 = type { %union.rec* } 10 %struct.LIST = type { %union.rec*, %union.rec* } 11 %struct.STYLE = type { %union.anon, %union.anon, i16, i16, i32 } 12 …union.FIRST_UNION, %union.SECOND_UNION, %union.THIRD_UNION, %union.FOURTH_UNION, %union.rec*, %2, … 13 %union.FIRST_UNION = type { %struct.FILE_POS } 14 %union.FOURTH_UNION = type { %struct.STYLE } 15 %union.SECOND_UNION = type { %0 } 16 %union.THIRD_UNION = type { %1 } 17 %union.anon = type { %struct.GAP } 18 %union.rec = type { %struct.head_type } [all …]
|
/external/llvm-project/llvm/test/CodeGen/Thumb2/ |
D | ldr-str-imm12.ll | 7 %2 = type { %union.rec* } 10 %struct.LIST = type { %union.rec*, %union.rec* } 11 %struct.STYLE = type { %union.anon, %union.anon, i16, i16, i32 } 12 …union.FIRST_UNION, %union.SECOND_UNION, %union.THIRD_UNION, %union.FOURTH_UNION, %union.rec*, %2, … 13 %union.FIRST_UNION = type { %struct.FILE_POS } 14 %union.FOURTH_UNION = type { %struct.STYLE } 15 %union.SECOND_UNION = type { %0 } 16 %union.THIRD_UNION = type { %1 } 17 %union.anon = type { %struct.GAP } 18 %union.rec = type { %struct.head_type } [all …]
|
/external/strace/ |
D | bpf_attr_check.c | 11 static_assert(SoM(struct BPF_MAP_CREATE_struct, map_type) == SoM(union bpf_attr, map_type), 13 …static_assert(offsetof(struct BPF_MAP_CREATE_struct, map_type) == offsetof(union bpf_attr, map_typ… 18 static_assert(SoM(struct BPF_MAP_CREATE_struct, key_size) == SoM(union bpf_attr, key_size), 20 …static_assert(offsetof(struct BPF_MAP_CREATE_struct, key_size) == offsetof(union bpf_attr, key_siz… 25 static_assert(SoM(struct BPF_MAP_CREATE_struct, value_size) == SoM(union bpf_attr, value_size), 27 …static_assert(offsetof(struct BPF_MAP_CREATE_struct, value_size) == offsetof(union bpf_attr, value… 32 static_assert(SoM(struct BPF_MAP_CREATE_struct, max_entries) == SoM(union bpf_attr, max_entries), 34 …static_assert(offsetof(struct BPF_MAP_CREATE_struct, max_entries) == offsetof(union bpf_attr, max_… 39 static_assert(SoM(struct BPF_MAP_CREATE_struct, map_flags) == SoM(union bpf_attr, map_flags), 41 …static_assert(offsetof(struct BPF_MAP_CREATE_struct, map_flags) == offsetof(union bpf_attr, map_fl… [all …]
|
/external/llvm-project/clang/test/SemaObjC/ |
D | non-trivial-c-union.m | 3 #include "non-trivial-c-union.h" 5 typedef union { // expected-note 12 {{'U0' has subobjects that are non-trivial to default-initializ… 16 U0 ug0; // expected-error {{cannot default-initialize an object of type 'U0' since it is a union th… 18 …or {{cannot default-initialize an object of type 'S0' since it contains a union that is non-trivia… 20 …ed-error {{cannot default-initialize an object of type 'U0' since it is a union that is non-trivia… 22 …union that is non-trivial to destruct}} expected-error {{cannot use type 'U0' for a function/metho… 23 …union that is non-trivial to destruct}} expected-error {{cannot use type 'S0' for a function/metho… 26 …union that is non-trivial to destruct}} expected-error {{cannot use type 'U0' for a function/metho… 27 …union that is non-trivial to destruct}} expected-error {{cannot use type 'S0' for a function/metho… 31 …union that is non-trivial to destruct}} expected-error {{cannot use type 'U0' for a function/metho… [all …]
|
/external/llvm-project/polly/test/Isl/CodeGen/ |
D | PHIInExit.ll | 6 %union.pthread_attr_t = type { i64, [12 x i32] } 7 %union.pthread_mutex_t = type { %struct..0__pthread_mutex_s } 8 %union.pthread_mutexattr_t = type { i32 } 13 …32 (i64*, %union.pthread_attr_t*, i8* (i8*)*, i8*), i32 (i64*, %union.pthread_attr_t*, i8* (i8*)*,… 15 …ead_mutex_t = weak alias i32 (%union.pthread_mutex_t*), i32 (%union.pthread_mutex_t*)* @pthread_mu… 16 …ad_mutex_t = weak alias i32 (%union.pthread_mutex_t*), i32 (%union.pthread_mutex_t*)* @pthread_mut… 17 …ad_mutex_t = weak alias i32 (%union.pthread_mutex_t*), i32 (%union.pthread_mutex_t*)* @pthread_mut… 18 …union.pthread_mutex_t*, %union.pthread_mutexattr_t*), i32 (%union.pthread_mutex_t*, %union.pthread… 21 …ttr_t = weak alias i32 (%union.pthread_mutexattr_t*), i32 (%union.pthread_mutexattr_t*)* @pthread_… 22 …= weak alias i32 (%union.pthread_mutexattr_t*, i32), i32 (%union.pthread_mutexattr_t*, i32)* @pthr… [all …]
|
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/ |
D | union_definition.tmpl | 1 {%- macro union_def(union, generate_fuzzing=false) %} 2 function {{union.name}}(value) { 7 {{tags(union)}} 9 {{union.name}}.prototype.initDefault_ = function() { 14 {{union.name}}.prototype.initValue_ = function(value) { 25 throw new TypeError("You may set only one member on a union."); 29 {%- for field in union.fields %} 35 throw new ReferenceError(keys[0] + " is not a {{union.name}} member."); 44 {{union.name}}.generate = function(generator_) { 45 var generated = new {{union.name}}; [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | 2010-02-12-CoalescerBug-Impdef.ll | 23 %0 = type { %"union gimple_statement_d"* } 33 %"struct VEC_gimple_base" = type { i32, i32, [1 x %"union gimple_statement_d"*] } 43 %"struct VEC_tree_base" = type { i32, i32, [1 x %"union tree_node"*] } 46 …uct et_node"*], %"struct basic_block_def"*, %"struct basic_block_def"*, %"union basic_block_il_dep… 50 %"struct block_symbol" = type { [3 x %"union rtunion"], %"struct object_block"*, i64 } 53 …= type { %"struct iv_cand"*, %"struct comp_cost", %"struct bitmap_head_def"*, %"union tree_node"* } 54 %"struct def_optype_d" = type { %"struct def_optype_d"*, %"union tree_node"** } 56 … %"struct basic_block_def"*, %"struct basic_block_def"*, %"union edge_def_insns", i8*, %"union tre… 59 …f"*, %"struct loops"*, %"struct htab"*, %"union tree_node"*, %"union tree_node"*, %"union tree_nod… 61 … %"struct VEC_tree_gc"*, %"union tree_node"*, %"struct pt_solution", %"struct pt_solution", %"stru… [all …]
|
D | tail-opts.ll | 174 %struct.rtx_def = type { i16, i8, i8, [1 x %union.rtunion] } 175 …union.tree_node*, i32, i8, i8, i8, i8, %union.tree_node*, %union.tree_node*, %union.tree_node*, %u… 176 %union..2anon = type { i32 } 177 %union.rtunion = type { i8* } 178 %union.tree_node = type { %struct.tree_decl } 180 define fastcc void @c_expand_expr_stmt(%union.tree_node* %expr) nounwind { 202 %tmp21 = load %union.tree_node*, %union.tree_node** null, align 8 ; <%union.tree_node*> [#uses=3] 203 …%tmp22 = getelementptr inbounds %union.tree_node, %union.tree_node* %tmp21, i64 0, i32 0, i32 0, i… 212 …%tmp25 = getelementptr inbounds %union.tree_node, %union.tree_node* %tmp21, i64 0, i32 0, i32 2 ; … 213 %tmp26 = bitcast i32* %tmp25 to %union.tree_node** ; <%union.tree_node**> [#uses=1] [all …]
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | 2010-02-12-CoalescerBug-Impdef.ll | 23 %0 = type { %"union gimple_statement_d"* } 33 %"struct VEC_gimple_base" = type { i32, i32, [1 x %"union gimple_statement_d"*] } 43 %"struct VEC_tree_base" = type { i32, i32, [1 x %"union tree_node"*] } 46 …uct et_node"*], %"struct basic_block_def"*, %"struct basic_block_def"*, %"union basic_block_il_dep… 50 %"struct block_symbol" = type { [3 x %"union rtunion"], %"struct object_block"*, i64 } 53 …= type { %"struct iv_cand"*, %"struct comp_cost", %"struct bitmap_head_def"*, %"union tree_node"* } 54 %"struct def_optype_d" = type { %"struct def_optype_d"*, %"union tree_node"** } 56 … %"struct basic_block_def"*, %"struct basic_block_def"*, %"union edge_def_insns", i8*, %"union tre… 59 …f"*, %"struct loops"*, %"struct htab"*, %"union tree_node"*, %"union tree_node"*, %"union tree_nod… 61 … %"struct VEC_tree_gc"*, %"union tree_node"*, %"struct pt_solution", %"struct pt_solution", %"stru… [all …]
|
/external/clang/test/Sema/ |
D | cast-to-union.c | 3 union u { int i; unsigned : 3; }; 4 void f(union u); 7 f((union u)x); // expected-warning {{cast to union type is a GNU extension}} in test() 8 f((union u)&x); // expected-error {{cast to union type from type 'int *' not present in union}} in test() 9 …f((union u)2U); // expected-error {{cast to union type from type 'unsigned int' not present in uni… in test() 12 union u w = (union u)2; // expected-warning {{cast to union type is a GNU extension}} 13 union u ww = (union u)1.0; // expected-error{{cast to union type from type 'double' not present in … 14 union u x = 7; // expected-error{{initializing 'union u' with an expression of incompatible type 'i… 16 union u zz = (union u)i; // expected-error{{initializer element is not a compile-time constant}} e…
|
/external/llvm-project/clang/test/Sema/ |
D | cast-to-union.c | 3 union u { int i; unsigned : 3; }; 4 void f(union u); 7 f((union u)x); // expected-warning {{cast to union type is a GNU extension}} in test() 8 f((union u)&x); // expected-error {{cast to union type from type 'int *' not present in union}} in test() 9 …f((union u)2U); // expected-error {{cast to union type from type 'unsigned int' not present in uni… in test() 12 union u w = (union u)2; // expected-warning {{cast to union type is a GNU extension}} 13 union u ww = (union u)1.0; // expected-error{{cast to union type from type 'double' not present in … 14 union u x = 7; // expected-error{{initializing 'union u' with an expression of incompatible type 'i… 16 union u zz = (union u)i; // expected-error{{initializer element is not a compile-time constant}} e…
|
/external/XNNPACK/src/xnnpack/ |
D | compute.h | 41 union { 77 union { 78 union xnn_qs8_gemm_params qs8; 79 union xnn_qu8_gemm_params qu8; 81 union xnn_f32_minmax_params f32; 148 union { 149 union xnn_f32_minmax_params f32; 180 union { 181 union xnn_qs8_gemm_params qs8; 182 union xnn_qu8_gemm_params qu8; [all …]
|
D | operator.h | 96 union { 105 union { 115 union { 160 union { 259 union { 260 union xnn_f32_abs_params f32_abs; 261 union xnn_f32_elu_params f32_elu; 262 union xnn_f32_lrelu_params f32_lrelu; 263 union xnn_f32_neg_params f32_neg; 264 union xnn_f32_rnd_params f32_rnd; [all …]
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_rast_priv.h | 297 const union lp_rast_cmd_arg ); 299 const union lp_rast_cmd_arg ); 301 const union lp_rast_cmd_arg ); 303 const union lp_rast_cmd_arg ); 305 const union lp_rast_cmd_arg ); 307 const union lp_rast_cmd_arg ); 309 const union lp_rast_cmd_arg ); 311 const union lp_rast_cmd_arg ); 314 const union lp_rast_cmd_arg ); 317 const union lp_rast_cmd_arg ); [all …]
|
/external/llvm-project/clang/test/SemaCXX/ |
D | anonymous-union.cpp | 3 union { 8 union { 12 union { // expected-warning{{anonymous types declared in an anonymous union are an extension}} 27 …mutable union { // expected-error{{anonymous union at class scope must not have a storage specifie… 67 union { 68 int x; // expected-error{{member of anonymous union redeclares 'x'}} 69 float y; // expected-error{{member of anonymous union redeclares 'y'}} 78 union { // expected-error{{anonymous unions at namespace or global scope must be declared 'static'}} 84 union { int extern_cxx; }; // expected-error{{anonymous unions at namespace or global scope must be… 87 static union { [all …]
|
/external/clang/test/CXX/class/class.union/ |
D | p1.cpp | 38 union U1 { 39 Virtual v; // expected-error {{union member 'v' has a non-trivial copy constructor}} 40 VirtualBase vbase; // expected-error {{union member 'vbase' has a non-trivial copy constructor}} 41 Ctor ctor; // expected-error {{union member 'ctor' has a non-trivial constructor}} 42 Ctor2 ctor2; // expected-error {{union member 'ctor2' has a non-trivial constructor}} 43 CtorTmpl ctortmpl; // expected-error {{union member 'ctortmpl' has a non-trivial constructor}} 44 …CopyCtor copyctor; // expected-error {{union member 'copyctor' has a non-trivial copy constructor}} 45 …CopyAssign copyassign; // expected-error {{union member 'copyassign' has a non-trivial copy assign… 46 Dtor dtor; // expected-error {{union member 'dtor' has a non-trivial destructor}} 50 union U2 { [all …]
|
/external/llvm-project/clang/test/CXX/class/class.union/ |
D | p1.cpp | 38 union U1 { 39 Virtual v; // expected-error {{union member 'v' has a non-trivial copy constructor}} 40 VirtualBase vbase; // expected-error {{union member 'vbase' has a non-trivial copy constructor}} 41 Ctor ctor; // expected-error {{union member 'ctor' has a non-trivial default constructor}} 42 Ctor2 ctor2; // expected-error {{union member 'ctor2' has a non-trivial default constructor}} 43 …CtorTmpl ctortmpl; // expected-error {{union member 'ctortmpl' has a non-trivial default construct… 44 …CopyCtor copyctor; // expected-error {{union member 'copyctor' has a non-trivial copy constructor}} 45 …CopyAssign copyassign; // expected-error {{union member 'copyassign' has a non-trivial copy assign… 46 Dtor dtor; // expected-error {{union member 'dtor' has a non-trivial destructor}} 50 union U2 { [all …]
|
/external/clang/test/SemaCXX/ |
D | anonymous-union.cpp | 3 union { 8 union { 12 union { // expected-warning{{anonymous types declared in an anonymous union are an extension}} 27 …mutable union { // expected-error{{anonymous union at class scope must not have a storage specifie… 67 union { 68 int x; // expected-error{{member of anonymous union redeclares 'x'}} 69 float y; // expected-error{{member of anonymous union redeclares 'y'}} 78 union { // expected-error{{anonymous unions at namespace or global scope must be declared 'static'}} 83 static union { 98 union { in g() [all …]
|
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/ |
D | wrapper_union_class_declaration.tmpl | 1 class {{export_attribute}} {{union.name}} { 3 using DataView = {{union.name}}DataView; 4 using Data_ = internal::{{union.name}}_Data; 5 using Tag = Data_::{{union.name}}_Tag; 7 static {{union.name}}Ptr New() { 8 return {{union.name}}Ptr(base::in_place); 11 {%- for field in union.fields %} 13 static {{union.name}}Ptr 16 auto result = {{union.name}}Ptr(base::in_place); 23 static {{union.name}}Ptr From(const U& u) { [all …]
|
/external/llvm/test/CodeGen/Hexagon/ |
D | remove_lsr.ll | 16 %union.vect64 = type { i64 } 17 %union.vect32 = type { i32 } 19 define void @foo(%union.vect64* nocapture %sss_extracted_bit_rx_data_ptr, 20 %union.vect32* nocapture %s_even, %union.vect32* nocapture %s_odd, 24 %scevgep = getelementptr %union.vect64, %union.vect64* %sss_extracted_bit_rx_data_ptr, i32 1 25 %scevgep28 = getelementptr %union.vect32, %union.vect32* %s_odd, i32 1 26 %scevgep32 = getelementptr %union.vect32, %union.vect32* %s_even, i32 1 35 %lsr.iv33 = phi %union.vect32* [ %scevgep34, %for.body ], [ %scevgep32, %entry ] 36 %lsr.iv29 = phi %union.vect32* [ %scevgep30, %for.body ], [ %scevgep28, %entry ] 37 %lsr.iv = phi %union.vect64* [ %scevgep26, %for.body ], [ %scevgep, %entry ] [all …]
|
/external/llvm-project/llvm/test/CodeGen/ARM/ |
D | 2011-06-09-TailCallByVal.ll | 19 …union.__mbstate_t*, %struct._xlocale*)*, i32 (%union.__mbstate_t*, %struct._xlocale*)*, i32 (i32*,… 21 …union.__mbstate_t, %union.__mbstate_t, %union.__mbstate_t, %union.__mbstate_t, %union.__mbstate_t,… 27 %union.__mbstate_t = type { i64, [120 x i8] } 29 @"\01_fnmatch.initial" = external constant %union.__mbstate_t, align 4 36 …i8* %string, i32 %flags, %union.__mbstate_t* byval(%union.__mbstate_t) @"\01_fnmatch.initial", %un… 40 …e i32 @fnmatch1(i8*, i8*, i8*, i32, %union.__mbstate_t* byval(%union.__mbstate_t), %union.__mbstat…
|