Lines Matching refs:nslots_
703 nslots_(0), phash_(NULL), pindex_(NULL), shndx_pool_(NULL), in DwpReader()
726 nslots_ = byte_reader_.ReadFourBytes( in Initialize()
730 pindex_ = phash_ + nslots_ * sizeof(uint64_t); in Initialize()
731 shndx_pool_ = pindex_ + nslots_ * sizeof(uint32_t); in Initialize()
740 nslots_ = byte_reader_.ReadFourBytes( in Initialize()
743 pindex_ = phash_ + nslots_ * sizeof(uint64_t); in Initialize()
744 offset_table_ = pindex_ + nslots_ * sizeof(uint32_t); in Initialize()
868 uint32_t slot = static_cast<uint32_t>(dwo_id) & (nslots_ - 1); in LookupCU()
873 (static_cast<uint32_t>(dwo_id >> 32) & (nslots_ - 1)) | 1; in LookupCU()
875 slot = (slot + secondary_hash) & (nslots_ - 1); in LookupCU()
886 uint32_t slot = static_cast<uint32_t>(dwo_id) & (nslots_ - 1); in LookupCUv2()
893 (static_cast<uint32_t>(dwo_id >> 32) & (nslots_ - 1)) | 1; in LookupCUv2()
895 slot = (slot + secondary_hash) & (nslots_ - 1); in LookupCUv2()