Searched defs:type_size (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/sandbox/win/sandbox_poc/pocdll/
H A Dhandles.cc92 ULONG type_size = 0; local
98 type_size,
99 &type_size);
100 if (type_size) {
102 new BYTE[type_size]);
109 type_size,
110 &type_size);
/external/qemu/include/qapi/
H A Dvisitor-impl.h60 /* visit_type_size() falls back to (*type_uint64)() if type_size is unset */
61 void (*type_size)(Visitor *v, uint64_t *obj, const char *name, Error **errp); member in struct:Visitor
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_draw_upload.c405 int type_size = get_size(glarray->Type); local
407 input->element_size = type_size * glarray->Size;
431 intel_buffer, type_size,
468 else if ((uintptr_t)(glarray->Ptr - ptr) & (type_size -1))
H A Dbrw_optimize.c133 const int type_size = inst_type_size[inst->bits1.da1.dest_reg_type]; local
147 length *= type_size;
177 const int type_size = inst_type_size[inst->bits1.da1.dest_reg_type]; local
187 const int length = 8 * type_size * inst->bits1.da1.dest_horiz_stride;
211 length *= type_size;
317 const int type_size = inst_type_size[inst->bits1.da1.src0_reg_type]; local
321 const int hs = type_size*inst_stride[inst->bits2.da1.src0_horiz_stride];
322 const int vs = type_size*inst_stride[inst->bits2.da1.src0_vert_stride];
328 const int write_end = write_start + type_size;
352 const int type_size local
[all...]
H A Dbrw_fs.cpp271 fs_visitor::type_size(const struct glsl_type *type) function in class:fs_visitor
282 return type_size(type->fields.array) * type->length;
286 size += type_size(type->fields.structure[i].type);
464 this->reg = v->virtual_grf_alloc(v->type_size(type));
H A Dbrw_vec4_visitor.cpp364 type_size(const struct glsl_type *type) function in namespace:brw
386 return type_size(type->fields.array) * type->length;
390 size += type_size(type->fields.structure[i].type);
428 this->reg = v->virtual_grf_alloc(type_size(type));
444 this->reg = v->virtual_grf_alloc(type_size(type));
802 for (int i = ir->location; i < ir->location + type_size(ir->type); i++) {
816 for (int i = 0; i < type_size(ir->type); i++) {
843 this->uniform_size[this->uniforms] = type_size(ir->type);
1445 int element_size = type_size(ir->type);
1505 offset += type_size(struct_typ
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_draw_upload.c405 int type_size = get_size(glarray->Type); local
407 input->element_size = type_size * glarray->Size;
431 intel_buffer, type_size,
468 else if ((uintptr_t)(glarray->Ptr - ptr) & (type_size -1))
H A Dbrw_optimize.c133 const int type_size = inst_type_size[inst->bits1.da1.dest_reg_type]; local
147 length *= type_size;
177 const int type_size = inst_type_size[inst->bits1.da1.dest_reg_type]; local
187 const int length = 8 * type_size * inst->bits1.da1.dest_horiz_stride;
211 length *= type_size;
317 const int type_size = inst_type_size[inst->bits1.da1.src0_reg_type]; local
321 const int hs = type_size*inst_stride[inst->bits2.da1.src0_horiz_stride];
322 const int vs = type_size*inst_stride[inst->bits2.da1.src0_vert_stride];
328 const int write_end = write_start + type_size;
352 const int type_size local
[all...]
H A Dbrw_fs.cpp271 fs_visitor::type_size(const struct glsl_type *type) function in class:fs_visitor
282 return type_size(type->fields.array) * type->length;
286 size += type_size(type->fields.structure[i].type);
464 this->reg = v->virtual_grf_alloc(v->type_size(type));
H A Dbrw_vec4_visitor.cpp364 type_size(const struct glsl_type *type) function in namespace:brw
386 return type_size(type->fields.array) * type->length;
390 size += type_size(type->fields.structure[i].type);
428 this->reg = v->virtual_grf_alloc(type_size(type));
444 this->reg = v->virtual_grf_alloc(type_size(type));
802 for (int i = ir->location; i < ir->location + type_size(ir->type); i++) {
816 for (int i = 0; i < type_size(ir->type); i++) {
843 this->uniform_size[this->uniforms] = type_size(ir->type);
1445 int element_size = type_size(ir->type);
1505 offset += type_size(struct_typ
[all...]
/external/lldb/source/Expression/
H A DIRInterpreter.cpp125 size_t type_size = m_target_data.getTypeStoreSize(type); local
127 switch (type_size)
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dir_to_mesa.cpp592 type_size(const struct glsl_type *type) function
614 return type_size(type->fields.array) * type->length;
618 size += type_size(type->fields.structure[i].type);
646 next_temp += type_size(type);
714 assert((int) ir->num_state_slots == type_size(ir->type));
719 this->next_temp += type_size(ir->type);
750 type_size(ir->type));
1563 next_temp += type_size(var->type);
1581 int element_size = type_size(ir->type);
1645 offset += type_size(struct_typ
[all...]
/external/mesa3d/src/mesa/program/
H A Dir_to_mesa.cpp592 type_size(const struct glsl_type *type) function
614 return type_size(type->fields.array) * type->length;
618 size += type_size(type->fields.structure[i].type);
646 next_temp += type_size(type);
714 assert((int) ir->num_state_slots == type_size(ir->type));
719 this->next_temp += type_size(ir->type);
750 type_size(ir->type));
1563 next_temp += type_size(var->type);
1581 int element_size = type_size(ir->type);
1645 offset += type_size(struct_typ
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp937 type_size(const struct glsl_type *type) function
959 return type_size(type->fields.array) * type->length;
963 size += type_size(type->fields.structure[i].type);
991 next_temp += type_size(type);
1059 assert((int) ir->num_state_slots == type_size(ir->type));
1064 this->next_temp += type_size(ir->type);
1100 type_size(ir->type));
1983 next_temp += type_size(var->type);
2003 int element_size = type_size(ir->type);
2072 offset += type_size(struct_typ
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Devent-parse.c1226 static unsigned int type_size(const char *name) function
1423 size_dynamic = type_size(field->name);
3121 &pevent->type_size, &pevent->type_offset,
H A Devent-parse.h424 int type_size; member in struct:pevent
/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp937 type_size(const struct glsl_type *type) function
959 return type_size(type->fields.array) * type->length;
963 size += type_size(type->fields.structure[i].type);
991 next_temp += type_size(type);
1059 assert((int) ir->num_state_slots == type_size(ir->type));
1064 this->next_temp += type_size(ir->type);
1100 type_size(ir->type));
1983 next_temp += type_size(var->type);
2003 int element_size = type_size(ir->type);
2072 offset += type_size(struct_typ
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadpdb.c372 unsigned long type_size; member in struct:_PDB_TYPES_OLD
384 unsigned long type_size; member in struct:_PDB_TYPES
1159 types->type_size = old->type_size;
/external/valgrind/main/perf/
H A Dtinycc.c5442 static int type_size(CType *type, int *a);
5885 size = type_size(&vtop->type, &align);
5989 size = type_size(type, &align);
6540 size = type_size(&vtop->type, &align);
10263 size = type_size(type, &align);
10456 size = type_size(&vtop->type, &align);
11164 return type_size(pointed_type(type), &align);
11595 static int type_size(CType *type, int *a)
11609 return type_size(&s->type, a) * s->c;
11907 size = type_size(
11593 static int type_size(CType *type, int *a) function
[all...]

Completed in 842 milliseconds