/external/llvm/utils/ |
lldbDataFormatters.py | 25 return (end - begin)/self.type_size 40 offset = index * self.type_size 54 self.type_size = self.data_type.GetByteSize() 55 assert self.type_size != 0
|
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/ |
handles.cc | 92 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/ |
visitor-impl.h | 60 /* 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/mapi/glapi/gen/ |
glX_proto_recv.py | 329 type_size = param.size() / count 339 if type_size == 1: 359 swap_func = self.swap_name(type_size) 361 print ' %s = (%s) %s( (%s *) (pc + %s), %s );' % (param.name, param.type_string(), swap_func, self.real_types[type_size], o, compsize) 411 type_size = 0 423 type_size = (param.size() / c) 424 if type_size == 1: 427 size_scale = " * %u" % (type_size) 433 print ' %s %s = __glXGetAnswerBuffer(cl, compsize%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, size_scale, type_size ) 443 print ' %s %s = __glXGetAnswerBuffer(cl, %s%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, param.counter, size_scale, type_size) [all...] |
typeexpr.py | 99 for (type_name, type_size, integer) in basic_types: 103 tn.size = type_size
|
/external/mesa3d/src/mapi/glapi/gen/ |
glX_proto_recv.py | 329 type_size = param.size() / count 339 if type_size == 1: 359 swap_func = self.swap_name(type_size) 361 print ' %s = (%s) %s( (%s *) (pc + %s), %s );' % (param.name, param.type_string(), swap_func, self.real_types[type_size], o, compsize) 411 type_size = 0 423 type_size = (param.size() / c) 424 if type_size == 1: 427 size_scale = " * %u" % (type_size) 433 print ' %s %s = __glXGetAnswerBuffer(cl, compsize%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, size_scale, type_size ) 443 print ' %s %s = __glXGetAnswerBuffer(cl, %s%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, param.counter, size_scale, type_size) [all...] |
typeexpr.py | 99 for (type_name, type_size, integer) in basic_types: 103 tn.size = type_size
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_optimize.c | 133 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 = inst_type_size[inst->bits1.da1.src1_reg_type] local [all...] |
brw_draw_upload.c | 405 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))
|
brw_vec4_visitor.cpp | 364 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); [all...] |
brw_fs.h | 226 int type_size(const struct glsl_type *type);
|
brw_fs_visitor.cpp | 155 offset += type_size(struct_type->fields.structure[i].type); 170 element_size = type_size(ir->type); [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_optimize.c | 133 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 = inst_type_size[inst->bits1.da1.src1_reg_type] local [all...] |
brw_draw_upload.c | 405 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))
|
brw_vec4_visitor.cpp | 364 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); [all...] |
brw_fs.h | 226 int type_size(const struct glsl_type *type);
|
brw_fs_visitor.cpp | 155 offset += type_size(struct_type->fields.structure[i].type); 170 element_size = type_size(ir->type); [all...] |
/frameworks/av/media/img_utils/include/img_utils/ |
TiffHelpers.h | 87 TYPE_SIZE = 2,
|
/external/chromium_org/content/common/input/ |
web_input_event_traits.cc | 189 bool Execute(WebInputEvent::Type /* type */, size_t* type_size) const { 190 *type_size = sizeof(EventType);
|
/system/media/camera/src/ |
camera_metadata.c | 894 size_t type_size = camera_metadata_type_size[entry->type]; local 896 if ( type_size * entry->count > 4 ) { 925 size_t type_size = camera_metadata_type_size[type]; local 938 k++, count--, index += type_size) { [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
ir_to_mesa.cpp | 592 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)); [all...] |
/external/mesa3d/src/mesa/program/ |
ir_to_mesa.cpp | 592 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)); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_glsl_to_tgsi.cpp | 937 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)); [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_glsl_to_tgsi.cpp | 937 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)); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
tree.def | 83 /* Each node that represents a data type has a component TYPE_SIZE 131 has zero (a null pointer) in its TYPE_SIZE. The tag name is in 153 by machine mode and by the TYPE_SIZE and the TYPE_PRECISION. */ 173 are distinguished by machine mode and by the TYPE_SIZE and the 610 and you need the value of <variable>.BAR to calculate TYPE_SIZE [all...] |