Home | History | Annotate | Download | only in bfd

Lines Matching refs:n_slots

836      n_slots[R_8] is the count of R_8 slots in this GOT.
837 n_slots[R_16] is the cumulative count of R_8 and R_16 slots
839 n_slots[R_32] is the cumulative count of R_8, R_16 and R_32 slots
841 bfd_vma n_slots[R_LAST];
1351 got->n_slots[R_8] = 0;
1352 got->n_slots[R_16] = 0;
1353 got->n_slots[R_32] = 0;
1567 bfd_vma n_slots;
1572 /* Update all got->n_slots counters, including n_slots[R_32]. */
1588 n_slots = elf_m68k_reloc_got_n_slots (new_reloc);
1593 got->n_slots[was_size] += n_slots;
1611 bfd_vma n_slots;
1613 n_slots = elf_m68k_reloc_got_n_slots (type);
1619 BFD_ASSERT (got->n_slots[os] >= n_slots);
1621 got->n_slots[os] -= n_slots;
1650 /* Determine entry's type and update got->n_slots counters. */
1665 BFD_ASSERT (got->n_slots[R_32] >= got->local_n_slots);
1667 if ((got->n_slots[R_8]
1669 || (got->n_slots[R_16]
1673 if (got->n_slots[R_8] > ELF_M68K_R_8_MAX_N_SLOTS_IN_GOT (info))
1909 if ((big->n_slots[R_8] + arg_.diff->n_slots[R_8]
1911 || (big->n_slots[R_16] + arg_.diff->n_slots[R_16]
1980 big->n_slots[R_8] += diff->n_slots[R_8];
1981 big->n_slots[R_16] += diff->n_slots[R_16];
1982 big->n_slots[R_32] += diff->n_slots[R_32];
1988 BFD_ASSERT (diff->n_slots[R_8] == 0);
1989 BFD_ASSERT (diff->n_slots[R_16] == 0);
1990 BFD_ASSERT (diff->n_slots[R_32] == 0);
1995 || ((big->n_slots[R_8]
1997 && (big->n_slots[R_16]
2143 n = (j >= 1) ? got->n_slots[j - 1] : 0;
2144 n = got->n_slots[j] - n;
2208 bfd_vma n_slots;
2234 arg->n_slots += arg->current_got->n_slots[R_32];
2247 BFD_ASSERT (arg->slots_relas_diff <= arg->n_slots);
2391 arg_.n_slots = 0;
2436 BFD_ASSERT (arg_.slots_relas_diff <= arg_.n_slots);
2437 arg_.n_slots -= arg_.slots_relas_diff;
2441 s->size = arg_.n_slots * sizeof (Elf32_External_Rela);
2443 BFD_ASSERT (arg_.n_slots == 0);
2492 BFD_ASSERT (got->n_slots[R_32] >= got->local_n_slots);
4388 bfd_vma n_slots;
4390 n_slots = elf_m68k_reloc_got_n_slots (got_entry->key_.type);
4391 while (n_slots--)
4394 + 4 * n_slots));