Lines Matching refs:slot
537 enter_set(unsigned int slot, const Unit_set* set);
541 hash_table(unsigned int slot) const in hash_table()
542 { return this->hash_table_[slot]; } in hash_table()
547 index_table(unsigned int slot) const in index_table()
548 { return this->index_table_[slot]; } in index_table()
1329 unsigned int slot = static_cast<unsigned int>(dwo_id) & (nslots - 1); in sized_verify_dwo_list() local
1330 const unsigned char* ph = phash + slot * sizeof(uint64_t); in sized_verify_dwo_list()
1331 const unsigned char* pi = pindex + slot * sizeof(uint32_t); in sized_verify_dwo_list()
1340 slot = (slot + h2) & (nslots - 1); in sized_verify_dwo_list()
1341 ph = phash + slot * sizeof(uint64_t); in sized_verify_dwo_list()
1342 pi = pindex + slot * sizeof(uint32_t); in sized_verify_dwo_list()
1697 unsigned int slot; in add_cu_set() local
1698 if (!this->cu_index_.find_or_add(dwo_id, &slot)) in add_cu_set()
1699 this->cu_index_.enter_set(slot, cu_set); in add_cu_set()
1719 unsigned int slot; in add_tu_set() local
1721 slot = this->last_tu_slot_; in add_tu_set()
1723 this->tu_index_.find_or_add(type_sig, &slot); in add_tu_set()
1724 this->tu_index_.enter_set(slot, tu_set); in add_tu_set()
1736 unsigned int slot = in find_or_add() local
1739 uint64_t probe = this->hash_table_[slot]; in find_or_add()
1740 uint32_t row_index = this->index_table_[slot]; in find_or_add()
1747 slot = (slot + secondary_hash) & (this->capacity_ - 1); in find_or_add()
1748 probe = this->hash_table_[slot]; in find_or_add()
1749 row_index = this->index_table_[slot]; in find_or_add()
1752 *slotp = slot; in find_or_add()
1759 Dwp_output_file::Dwp_index::enter_set(unsigned int slot, in enter_set() argument
1762 gold_assert(slot < this->capacity_); in enter_set()
1774 gold_assert(this->hash_table_[slot] == 0); in enter_set()
1775 this->hash_table_[slot] = set->signature; in enter_set()
1776 this->index_table_[slot] = row_index; in enter_set()
1819 unsigned int slot; in grow() local
1820 bool found = this->find_or_add(signature, &slot); in grow()
1822 this->hash_table_[slot] = signature; in grow()
1823 this->index_table_[slot] = row_index; in grow()