Lines Matching defs:records

737   /* Track the avr property records that apply to this section.  */
741 /* Number of records in the list. */
744 /* How many records worth of space have we allocated. */
747 /* The records, only COUNT records are initialised. */
749 } records;
804 relax_info->records.count = 0;
805 relax_info->records.allocated = 0;
806 relax_info->records.items = NULL;
1937 if (relax_info->records.count > 0)
1945 for (i = 0; i < relax_info->records.count; ++i)
1947 bfd_vma offset = relax_info->records.items [i].offset;
1952 prop_record = &relax_info->records.items [i];
2304 /* Iterate over the property records in R_LIST, and copy each record into
2305 the list of records within the relaxation information for the section to
2317 relax_info = get_avr_relax_info (r_list->records [i].section);
2320 if (relax_info->records.count
2321 == relax_info->records.allocated)
2326 relax_info->records.allocated += 10;
2328 * relax_info->records.allocated);
2329 relax_info->records.items
2330 = bfd_realloc (relax_info->records.items, size);
2333 memcpy (&relax_info->records.items [relax_info->records.count],
2334 &r_list->records [i],
2336 relax_info->records.count++;
2361 referenced from LINK_INFO. All of the records within each property
2396 if (relax_info && relax_info->records.count > 0)
2400 qsort (relax_info->records.items,
2401 relax_info->records.count,
2406 for (i = 0; i < relax_info->records.count; ++i)
2408 switch (relax_info->records.items [i].type)
3101 /* Look through all the property records in this section to see if
3102 there's any alignment records that can be moved. */
3106 if (relax_info->records.count > 0)
3110 for (i = 0; i < relax_info->records.count; ++i)
3112 switch (relax_info->records.items [i].type)
3128 record = &relax_info->records.items [i];
3569 /* We want to read in symbol extension records only once. To do this
4009 /* Load all of the property records from SEC, a section from ABFD. Return
4010 a STRUCT AVR_PROPERTY_RECORD_LIST containing all the records. The
4011 memory for the returned structure, and all of the records pointed too by
4072 r_list->records = (struct avr_property_record *) (&r_list [1]);
4092 r_list->records [i].section = NULL;
4093 r_list->records [i].offset = 0;
4118 r_list->records [i].section = rel_sec;
4119 r_list->records [i].offset = sec_offset;
4127 if (r_list->records [i].section == NULL)
4147 r_list->records [i].section = fs_data.section;
4148 r_list->records [i].offset
4152 r_list->records [i].type = *ptr;
4156 switch (r_list->records [i].type)
4165 r_list->records [i].data.org.fill = bfd_get_32 (abfd, ptr);
4173 r_list->records [i].data.align.bytes = bfd_get_32 (abfd, ptr);
4178 r_list->records [i].data.align.preceding_deleted = 0;
4184 r_list->records [i].data.align.bytes = bfd_get_32 (abfd, ptr);
4186 r_list->records [i].data.align.fill = bfd_get_32 (abfd, ptr);
4191 r_list->records [i].data.align.preceding_deleted = 0;
4211 /* Load all of the property records from ABFD. See