Lines Matching refs:nbucket
790 size_t nbucket = getHashBucketCount(hashed_sym_cnt, true); in sizeNamePools() local
791 gnuhash = (4 + nbucket + hashed_sym_cnt) * 4; in sizeNamePools()
1110 uint32_t& nbucket = word_array[0]; in emitELFHashTab() local
1114 nbucket = getHashBucketCount(dynsymSize, false); in emitELFHashTab()
1118 uint32_t* chain = (bucket + nbucket); in emitELFHashTab()
1121 memset(reinterpret_cast<void*>(bucket), 0, nbucket); in emitELFHashTab()
1129 size_t bucket_pos = hash_func(name) % nbucket; in emitELFHashTab()
1149 uint32_t& nbucket = word_array[0]; in emitGNUHashTab() local
1171 nbucket = 1; // one empty bucket in emitGNUHashTab()
1195 nbucket = getHashBucketCount(hashed_sym_cnt, true); in emitGNUHashTab()
1202 chain = (bucket + nbucket); in emitGNUHashTab()
1212 uint32_t hash = djbhash % nbucket; in emitGNUHashTab()
1219 for (size_t idx = 0; idx < nbucket; ++idx) { in emitGNUHashTab()