Lines Matching full:cache_tail
19 static struct crec *cache_head = NULL, *cache_tail = NULL, **hash_table = NULL;
182 if (cache_tail)
183 cache_tail->next = crecp;
186 crecp->prev = cache_tail;
188 cache_tail = crecp;
207 if (!cache_tail)
208 cache_tail = crecp;
222 cache_tail = crecp->prev;
387 if (!(new = cache_tail)) /* no entries left - cache is too small, bail */