HomeSort by relevance Sort by last modified time
    Searched full:struct_type (Results 1 - 25 of 26) sorted by null

1 2

  /external/clang/test/SemaTemplate/
inject-templated-friend.cpp 14 template <typename STRUCT_TYPE>
24 Streamer(const STRUCT_TYPE& s) : s(s) {}
26 const STRUCT_TYPE& s;
inject-templated-friend-post.cpp 22 template <typename STRUCT_TYPE>
34 template <typename STRUCT_TYPE>
44 Streamer(const STRUCT_TYPE& s) : s(s) {}
46 const STRUCT_TYPE& s;
  /device/google/contexthub/firmware/inc/
toolchain.h 71 #define DECLARE_OS_ALIGNMENT(nam, size, extra_keyword, struct_type) _Pragma("data_alignment=4") extra_keyword uint8_t _##nam##_store [size]; extra_keyword #struct_type *nam = (#struct_type *)_##nam##_store
109 #define DECLARE_OS_ALIGNMENT(nam, size, extra_keyword, struct_type) extra_keyword uint8_t _##nam##_store [size] __attribute__((aligned(4))); extra_keyword struct_type *nam = (struct_type *)_##nam##_store
  /external/llvm/test/CodeGen/X86/
pr17631.ll 3 %struct_type = type { [64 x <8 x float>], <8 x float> }
12 %second_alloc = alloca %struct_type
  /external/llvm/test/Transforms/InstCombine/
alloca.ll 134 %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/mesa3d/src/glsl/
lower_ubo_reference.cpp 133 const glsl_type *struct_type = deref_record->record->type; local
137 for (unsigned int i = 0; i < struct_type->length; i++) {
138 const glsl_type *type = struct_type->fields.structure[i].type;
143 if (strcmp(struct_type->fields.structure[i].name,
  /system/extras/tests/net_test/
cstruct.py 192 def Read(data, struct_type):
193 length = len(struct_type)
194 return struct_type(data), data[length:]
iproute.py 390 struct_type = {
397 parsed = self._ParseNLMsg(data, struct_type)
  /external/vulkan-validation-layers/
vk-layer-generate.py 112 def gather_object_uses_in_struct(obj_list, struct_type):
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']
    [all...]
vk_helper.py 294 def _add_struct(self, line_txt, struct_type, num):
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'] = Tru
    [all...]
  /external/tpm2/generator/
test_structure_generator.html 53 <a name=bookmark274>Table 5 Definition of struct_type Structure <OUT>
structure_generator_test.py 170 tpm_obj = types['struct_type']
171 self.assertEqual(tpm_obj.name, 'struct_type')
  /external/dbus/dbus/
dbus-internals.h 185 #define _DBUS_STRUCT_OFFSET(struct_type, member) \
186 ((intptr_t) ((unsigned char*) &((struct_type*) 0)->member))
  /system/tpm/trunks/generator/
generator_test.py 178 FAKE_STRUCTURE = ('_BEGIN_STRUCTURES\n_STRUCTURE struct_type\n'
220 self.assertEqual(structs[0].name, 'struct_type')
  /external/llvm/test/Bindings/OCaml/
target.ml 46 let sty = struct_type context [| i32_type; i64_type |] in
core.ml 224 insist ((struct_type context [| i16_type; i16_type; i32_type; i32_type |])
941 let sty = struct_type context [| i8_type; i64_type |] in
    [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 217 // arguments set. Assume, we have some "struct_type" with size = 4 bytes,
220 // i32 foo(i32 %p, %struct_type* %r, i32 %s, %struct_type* %t)
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_visitor.cpp 147 const glsl_type *struct_type = ir->record->type; local
152 for (unsigned int i = 0; i < struct_type->length; i++) {
153 if (strcmp(struct_type->fields.structure[i].name, ir->field) == 0)
155 offset += type_size(struct_type->fields.structure[i].type);
    [all...]
brw_vec4_visitor.cpp 1497 const glsl_type *struct_type = ir->record->type; local
    [all...]
  /external/mesa3d/src/mesa/program/
ir_to_mesa.cpp 1637 const glsl_type *struct_type = ir->record->type; local
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
_ctypes.so 
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 577 (** [struct_type context tys] returns the structure type in the context
580 val struct_type : llcontext -> lltype array -> lltype var
896 [struct_type (Array.map type_of elts)] and containing the values [elts]
    [all...]
llvm.ml 364 external struct_type : llcontext -> lltype array -> lltype = "llvm_struct_type"
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 2064 const glsl_type *struct_type = ir->record->type; local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readdwarf3.c     [all...]

Completed in 1110 milliseconds

1 2