Searched refs:arg_cache (Results 1 – 1 of 1) sorted by relevance
2572 static struct arg_cache struct2574 struct arg_cache *next; argument2578 *arg_cache[ARG_CACHE_SIZE]; argument2583 struct arg_cache *entry; in lookup_arg_cache()2585 entry = arg_cache[strnshash(code) % ARG_CACHE_SIZE]; in lookup_arg_cache()2598 struct arg_cache *entry = NEW(struct arg_cache); in insert_arg_cache()2605 entry->next = arg_cache[i]; in insert_arg_cache()2606 arg_cache[i] = entry; in insert_arg_cache()2612 struct arg_cache *e, *t; in clean_arg_cache()2617 for (e = arg_cache[i]; (t = e); e = e->next, FREE(t)) in clean_arg_cache()[all …]