Lines Matching refs:relsize
2209 long relsize; in copy_section() local
2234 relsize = 0; in copy_section()
2237 relsize = bfd_get_reloc_upper_bound (ibfd, isection); in copy_section()
2239 if (relsize < 0) in copy_section()
2242 if (relsize == -1 && bfd_get_error () == bfd_error_invalid_operation) in copy_section()
2243 relsize = 0; in copy_section()
2249 if (relsize == 0) in copy_section()
2253 relpp = xmalloc (relsize); in copy_section()
2266 temp_relpp = xmalloc (relsize); in copy_section()
2389 long relsize; in mark_symbols_used_in_relocations() local
2397 relsize = bfd_get_reloc_upper_bound (ibfd, isection); in mark_symbols_used_in_relocations()
2398 if (relsize < 0) in mark_symbols_used_in_relocations()
2401 if (relsize == -1 && bfd_get_error () == bfd_error_invalid_operation) in mark_symbols_used_in_relocations()
2406 if (relsize == 0) in mark_symbols_used_in_relocations()
2409 relpp = xmalloc (relsize); in mark_symbols_used_in_relocations()