255
245
unsigned int i, hsize, hmask, entries, prev_val, *hash_count;
257
247
struct delta_index *index;
258
248
struct unpacked_index_entry *entry, **hash;
265
256
/* Determine index hash size. Note that indexing skips the
266
257
first byte to allow for optimizing the Rabin's polynomial
267
258
initialization in create_delta(). */
270
261
for (i = 4; (1u << i) < hsize && i < 31; i++);