Home
last modified time | relevance | path

Searched refs:struct_type (Results 1 – 16 of 16) sorted by relevance

/external/llvm/test/Transforms/InstCombine/
Dalloca.ll134 %struct_type = type { i32, i32 }
135 declare void @test9_aux(<{ %struct_type }>* inalloca)
139 define void @test9(%struct_type* %a) {
143 %argmem = alloca inalloca <{ %struct_type }>
145 %0 = getelementptr inbounds <{ %struct_type }>, <{ %struct_type }>* %argmem, i32 0, i32 0
146 %1 = bitcast %struct_type* %0 to i8*
147 %2 = bitcast %struct_type* %a to i8*
149 call void @test9_aux(<{ %struct_type }>* inalloca %argmem)
/external/vulkan-validation-layers/
Dvk-layer-generate.py112 def gather_object_uses_in_struct(obj_list, struct_type): argument
114 if vk_helper.typedef_rev_dict[struct_type] in vk_helper.struct_dict:
115 struct_type = vk_helper.typedef_rev_dict[struct_type]
117 for m in sorted(vk_helper.struct_dict[struct_type]):
118 array_len = "%s" % (str(vk_helper.struct_dict[struct_type][m]['array_size']))
119 base_type = vk_helper.struct_dict[struct_type][m]['type']
120 mem_name = vk_helper.struct_dict[struct_type][m]['name']
753 def _gather_object_uses(self, obj_list, struct_type, obj_set): argument
757 for m in vk_helper.struct_dict[struct_type]:
758 if vk_helper.struct_dict[struct_type][m]['type'] in obj_list:
[all …]
Dvk_helper.py294 def _add_struct(self, line_txt, struct_type, num): argument
296 if '{' == struct_type:
298 if not struct_type in self.struct_dict:
299 self.struct_dict[struct_type] = {}
307 self.struct_dict[struct_type][num] = {}
308 self.struct_dict[struct_type][num]['full_type'] = member_type
309 self.struct_dict[struct_type][num]['dyn_array'] = False
311 self.struct_dict[struct_type][num]['ptr'] = True
316 self.struct_dict[struct_type][num]['ptr'] = False
318 self.struct_dict[struct_type][num]['const'] = True
[all …]
/external/mesa3d/src/glsl/
Dlower_ubo_reference.cpp133 const glsl_type *struct_type = deref_record->record->type; in handle_rvalue() local
137 for (unsigned int i = 0; i < struct_type->length; i++) { in handle_rvalue()
138 const glsl_type *type = struct_type->fields.structure[i].type; in handle_rvalue()
143 if (strcmp(struct_type->fields.structure[i].name, in handle_rvalue()
/external/llvm/test/CodeGen/X86/
Dpr17631.ll3 %struct_type = type { [64 x <8 x float>], <8 x float> }
12 %second_alloc = alloca %struct_type
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/win32/
DWin32ForceFeedback.h86 LPVOID struct_type, const Effect* effect, const Envelope* envelope );
/external/dbus/dbus/
Ddbus-internals.h185 #define _DBUS_STRUCT_OFFSET(struct_type, member) \ argument
186 ((intptr_t) ((unsigned char*) &((struct_type*) 0)->member))
/external/llvm/test/Bindings/OCaml/
Dtarget.ml46 let sty = struct_type context [| i32_type; i64_type |] in
Dcore.ml224 insist ((struct_type context [| i16_type; i16_type; i32_type; i32_type |])
941 let sty = struct_type context [| i8_type; i64_type |] in
1094 let sty = struct_type context [| i32_type; i8_type |] in
1175 let rt = struct_type context [| pointer_type i8_type; i32_type |] in
1389 let sty = struct_type context [| i32_type; i8_type |] in
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/
DWin32ForceFeedback.cpp318 LPVOID struct_type, const Effect* effect, const Envelope* envelope ) in _setCommonProperties() argument
390 diEffect->lpvTypeSpecificParams = struct_type; in _setCommonProperties()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_fs_visitor.cpp147 const glsl_type *struct_type = ir->record->type; in visit() local
152 for (unsigned int i = 0; i < struct_type->length; i++) { in visit()
153 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0) in visit()
155 offset += type_size(struct_type->fields.structure[i].type); in visit()
Dbrw_vec4_visitor.cpp1497 const glsl_type *struct_type = ir->record->type; in visit() local
1502 for (i = 0; i < struct_type->length; i++) { in visit()
1503 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0) in visit()
1505 offset += type_size(struct_type->fields.structure[i].type); in visit()
/external/mesa3d/src/mesa/program/
Dir_to_mesa.cpp1637 const glsl_type *struct_type = ir->record->type; in visit() local
1642 for (i = 0; i < struct_type->length; i++) { in visit()
1643 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0) in visit()
1645 offset += type_size(struct_type->fields.structure[i].type); in visit()
/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi.cpp2064 const glsl_type *struct_type = ir->record->type; in visit() local
2069 for (i = 0; i < struct_type->length; i++) { in visit()
2070 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0) in visit()
2072 offset += type_size(struct_type->fields.structure[i].type); in visit()
/external/llvm/bindings/ocaml/llvm/
Dllvm.mli577 (** [struct_type context tys] returns the structure type in the context
580 val struct_type : llcontext -> lltype array -> lltype val
896 [struct_type (Array.map type_of elts)] and containing the values [elts]
Dllvm.ml364 external struct_type : llcontext -> lltype array -> lltype = "llvm_struct_type"