Home | History | Annotate | Download | only in src

Lines Matching refs:hash_table

19 static struct crec *cache_head = NULL, *cache_tail = NULL, **hash_table = NULL;
99 /* In most cases, we create the hash table once here by calling this with (hash_table == NULL)
112 if (!hash_table)
120 old = hash_table;
122 hash_table = new;
151 return hash_table + ((val ^ (val >> 16)) & (hash_size - 1));
308 for (crecp = hash_table[i], up = &hash_table[i];
601 for (crecp = hash_table[i], up = &hash_table[i];
675 for (lookup = hash_table[i]; lookup; lookup = lookup->hash_next)
877 for (cache = hash_table[i], up = &hash_table[i]; cache; cache = tmp)
1024 for (cache = hash_table[i], up = &hash_table[i]; cache; cache = cache->hash_next)
1165 for (cache = hash_table[i]; cache; cache = cache->hash_next)