Lines Matching refs:got_offset

1468   unsigned int got_offset = this->add_got_entry(Got_entry(gsym, false));  in add_global()  local
1469 gsym->set_got_offset(got_type, got_offset); in add_global()
1483 unsigned int got_offset = this->add_got_entry(Got_entry(gsym, true)); in add_global_plt() local
1484 gsym->set_got_offset(got_type, got_offset); in add_global_plt()
1502 unsigned int got_offset = this->add_got_entry(Got_entry()); in add_global_with_rel() local
1503 gsym->set_got_offset(got_type, got_offset); in add_global_with_rel()
1504 rel_dyn->add_global_generic(gsym, r_type, this, got_offset, 0); in add_global_with_rel()
1522 unsigned int got_offset = this->add_got_entry_pair(Got_entry(), Got_entry()); in add_global_pair_with_rel() local
1523 gsym->set_got_offset(got_type, got_offset); in add_global_pair_with_rel()
1524 rel_dyn->add_global_generic(gsym, r_type_1, this, got_offset, 0); in add_global_pair_with_rel()
1528 got_offset + got_size / 8, 0); in add_global_pair_with_rel()
1545 unsigned int got_offset = this->add_got_entry(Got_entry(object, symndx, in add_local() local
1547 object->set_local_got_offset(symndx, got_type, got_offset); in add_local()
1563 unsigned int got_offset = this->add_got_entry(Got_entry(object, symndx, in add_local_plt() local
1565 object->set_local_got_offset(symndx, got_type, got_offset); in add_local_plt()
1584 unsigned int got_offset = this->add_got_entry(Got_entry()); in add_local_with_rel() local
1585 object->set_local_got_offset(symndx, got_type, got_offset); in add_local_with_rel()
1586 rel_dyn->add_local_generic(object, symndx, r_type, this, got_offset, 0); in add_local_with_rel()
1607 unsigned int got_offset = in add_local_pair_with_rel() local
1610 object->set_local_got_offset(symndx, got_type, got_offset); in add_local_pair_with_rel()
1612 rel_dyn->add_output_section_generic(os, r_type, this, got_offset, 0); in add_local_pair_with_rel()
1631 unsigned int got_offset in add_local_tls_pair() local
1634 object->set_local_got_offset(symndx, got_type, got_offset); in add_local_tls_pair()
1635 rel_dyn->add_local_generic(object, 0, r_type, this, got_offset, 0); in add_local_tls_pair()
1649 object->set_local_got_offset(sym_index, got_type, this->got_offset(i)); in reserve_local()
1662 gsym->set_got_offset(got_type, this->got_offset(i)); in reserve_global()
1707 off_t got_offset = this->free_list_.allocate(got_size / 8, in add_got_entry() local
1709 if (got_offset == -1) in add_got_entry()
1712 unsigned int got_index = got_offset / (got_size / 8); in add_got_entry()
1715 return static_cast<unsigned int>(got_offset); in add_got_entry()
1729 unsigned int got_offset; in add_got_entry_pair() local
1731 got_offset = this->last_got_offset(); in add_got_entry_pair()
1734 return got_offset; in add_got_entry_pair()
1739 off_t got_offset = this->free_list_.allocate(2 * got_size / 8, in add_got_entry_pair() local
1741 if (got_offset == -1) in add_got_entry_pair()
1744 unsigned int got_index = got_offset / (got_size / 8); in add_got_entry_pair()
1748 return static_cast<unsigned int>(got_offset); in add_got_entry_pair()