Lines Matching refs:Buckets
93 // Figure out how many buckets we need, then compute the bucket
101 Buckets.resize(Header.bucket_count);
104 Buckets[bucket].push_back(Data[i]);
136 // Walk through and emit the buckets for the table. Each index is
140 for (size_t i = 0, e = Buckets.size(); i < e; ++i) {
142 if (Buckets[i].size() != 0)
146 index += Buckets[i].size();
150 // Walk through the buckets and emit the individual hashes for each
153 for (size_t i = 0, e = Buckets.size(); i < e; ++i) {
154 for (HashList::const_iterator HI = Buckets[i].begin(),
155 HE = Buckets[i].end(); HI != HE; ++HI) {
162 // Walk through the buckets and emit the individual offsets for each
167 for (size_t i = 0, e = Buckets.size(); i < e; ++i) {
168 for (HashList::const_iterator HI = Buckets[i].begin(),
169 HE = Buckets[i].end(); HI != HE; ++HI) {
181 // Walk through the buckets and emit the full data for each element in
186 for (size_t i = 0, e = Buckets.size(); i < e; ++i) {
187 for (HashList::const_iterator HI = Buckets[i].begin(),
188 HE = Buckets[i].end(); HI != HE; ++HI) {
222 // Emit the buckets.
251 O << "Buckets and Hashes: \n";
252 for (size_t i = 0, e = Buckets.size(); i < e; ++i)
253 for (HashList::const_iterator HI = Buckets[i].begin(),
254 HE = Buckets[i].end(); HI != HE; ++HI)