Lines Matching refs:nbytes

1184   int nbytes;  in decode_array_element_type()  local
1189 nbytes = attribute_size (attribute); in decode_array_element_type()
1190 if (nbytes == -1) in decode_array_element_type()
1200 fundtype = target_to_host (scan, nbytes, GET_UNSIGNED, in decode_array_element_type()
1208 die_ref = target_to_host (scan, nbytes, GET_UNSIGNED, in decode_array_element_type()
1284 int nbytes; in decode_subscript_data_item() local
1299 nbytes = TARGET_FT_LONG_SIZE (current_objfile); in decode_subscript_data_item()
1300 lowbound = target_to_host (scan, nbytes, GET_UNSIGNED, current_objfile); in decode_subscript_data_item()
1301 scan += nbytes; in decode_subscript_data_item()
1302 highbound = target_to_host (scan, nbytes, GET_UNSIGNED, current_objfile); in decode_subscript_data_item()
1303 scan += nbytes; in decode_subscript_data_item()
1367 int nbytes; in dwarf_read_array_type() local
1379 nbytes = attribute_size (AT_subscr_data); in dwarf_read_array_type()
1380 blocksz = target_to_host (sub, nbytes, GET_UNSIGNED, current_objfile); in dwarf_read_array_type()
1381 subend = sub + nbytes + blocksz; in dwarf_read_array_type()
1382 sub += nbytes; in dwarf_read_array_type()
1666 int nbytes; in enum_type() local
1695 nbytes = attribute_size (AT_short_element_list); in enum_type()
1699 nbytes = attribute_size (AT_element_list); in enum_type()
1701 blocksz = target_to_host (scan, nbytes, GET_UNSIGNED, objfile); in enum_type()
1702 listend = scan + nbytes + blocksz; in enum_type()
1703 scan += nbytes; in enum_type()
2147 unsigned short nbytes; in locval() local
2157 nbytes = attribute_size (AT_location); in locval()
2158 locsize = target_to_host (loc, nbytes, GET_UNSIGNED, current_objfile); in locval()
2159 loc += nbytes; in locval()
2464 int nbytes; in add_enum_psymbol() local
2471 nbytes = attribute_size (AT_short_element_list); in add_enum_psymbol()
2475 nbytes = attribute_size (AT_element_list); in add_enum_psymbol()
2477 blocksz = target_to_host (scan, nbytes, GET_UNSIGNED, objfile); in add_enum_psymbol()
2478 scan += nbytes; in add_enum_psymbol()
3053 int nbytes; in decode_mod_fund_type() local
3057 nbytes = attribute_size (AT_mod_fund_type); in decode_mod_fund_type()
3058 modcount = target_to_host (typedata, nbytes, GET_UNSIGNED, current_objfile); in decode_mod_fund_type()
3059 typedata += nbytes; in decode_mod_fund_type()
3099 int nbytes; in decode_mod_u_d_type() local
3103 nbytes = attribute_size (AT_mod_u_d_type); in decode_mod_u_d_type()
3104 modcount = target_to_host (typedata, nbytes, GET_UNSIGNED, current_objfile); in decode_mod_u_d_type()
3105 typedata += nbytes; in decode_mod_u_d_type()
3164 int nbytes; in decode_modified_type() local
3171 nbytes = attribute_size (AT_fund_type); in decode_modified_type()
3172 fundtype = target_to_host (modifiers, nbytes, GET_UNSIGNED, in decode_modified_type()
3177 nbytes = attribute_size (AT_user_def_type); in decode_modified_type()
3178 die_ref = target_to_host (modifiers, nbytes, GET_UNSIGNED, in decode_modified_type()
3524 int nbytes; /* Size of next field to read */ in completedieinfo() local
3534 nbytes = attribute_size (attr); in completedieinfo()
3535 if (nbytes == -1) in completedieinfo()
3546 dip->at_fund_type = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3550 dip->at_ordering = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3554 dip->at_bit_offset = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3558 dip->at_sibling = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3562 dip->at_stmt_list = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3567 dip->at_low_pc = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3573 dip->at_high_pc = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3578 dip->at_language = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3582 dip->at_user_def_type = target_to_host (diep, nbytes, in completedieinfo()
3586 dip->at_byte_size = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3591 dip->at_bit_size = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3595 dip->at_member = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3599 dip->at_discr = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3648 dip->at_start_scope = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3652 dip->at_stride_size = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3656 dip->at_src_info = target_to_host (diep, nbytes, GET_UNSIGNED, in completedieinfo()
3687 diep += 2 + target_to_host (diep, nbytes, GET_UNSIGNED, objfile); in completedieinfo()
3690 diep += 4 + target_to_host (diep, nbytes, GET_UNSIGNED, objfile); in completedieinfo()
3733 target_to_host (char *from, int nbytes, int signextend, /* FIXME: Unused */ in target_to_host() argument
3738 switch (nbytes) in target_to_host()
3755 DIE_ID, DIE_NAME, nbytes); in target_to_host()
3785 int nbytes; /* Size of next data for this attribute */ in attribute_size() local
3792 nbytes = 0; in attribute_size()
3796 nbytes = 2; in attribute_size()
3801 nbytes = 4; in attribute_size()
3804 nbytes = 8; in attribute_size()
3807 nbytes = TARGET_FT_POINTER_SIZE (objfile); in attribute_size()
3811 nbytes = -1; in attribute_size()
3814 return (nbytes); in attribute_size()