Lines Matching refs:scan
1178 decode_array_element_type (char *scan) in decode_array_element_type() argument
1186 attribute = target_to_host (scan, SIZEOF_ATTRIBUTE, GET_UNSIGNED, in decode_array_element_type()
1188 scan += SIZEOF_ATTRIBUTE; in decode_array_element_type()
1200 fundtype = target_to_host (scan, nbytes, GET_UNSIGNED, in decode_array_element_type()
1205 typep = decode_mod_fund_type (scan); in decode_array_element_type()
1208 die_ref = target_to_host (scan, nbytes, GET_UNSIGNED, in decode_array_element_type()
1217 typep = decode_mod_u_d_type (scan); in decode_array_element_type()
1274 decode_subscript_data_item (char *scan, char *end) in decode_subscript_data_item() argument
1286 format = target_to_host (scan, SIZEOF_FORMAT_SPECIFIER, GET_UNSIGNED, in decode_subscript_data_item()
1288 scan += SIZEOF_FORMAT_SPECIFIER; in decode_subscript_data_item()
1292 typep = decode_array_element_type (scan); in decode_subscript_data_item()
1295 fundtype = target_to_host (scan, SIZEOF_FMT_FT, GET_UNSIGNED, in decode_subscript_data_item()
1298 scan += SIZEOF_FMT_FT; 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()
1304 nexttype = decode_subscript_data_item (scan, end); in decode_subscript_data_item()
1662 char *scan; in enum_type() local
1690 scan = dip->at_element_list; in enum_type()
1691 if (scan != NULL) 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()
1704 while (scan < listend) in enum_type()
1713 target_to_host (scan, TARGET_FT_LONG_SIZE (objfile), GET_SIGNED, in enum_type()
1715 scan += TARGET_FT_LONG_SIZE (objfile); in enum_type()
1716 list->field.name = obsavestring (scan, strlen (scan), in enum_type()
1718 scan += strlen (scan) + 1; in enum_type()
2461 char *scan; in add_enum_psymbol() local
2466 scan = dip->at_element_list; in add_enum_psymbol()
2467 if (scan != NULL) 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()
2479 listend = scan + blocksz; in add_enum_psymbol()
2480 while (scan < listend) in add_enum_psymbol()
2482 scan += TARGET_FT_LONG_SIZE (objfile); in add_enum_psymbol()
2483 add_psymbol_to_list (scan, strlen (scan), VAR_DOMAIN, LOC_CONST, in add_enum_psymbol()
2486 scan += strlen (scan) + 1; in add_enum_psymbol()