Home
last modified time | relevance | path

Searched refs:arg_cache (Results 1 – 1 of 1) sorted by relevance

/dragonfly/contrib/byacc/
H A Dreader.c2339 static struct arg_cache struct
2341 struct arg_cache *next; argument
2345 *arg_cache[ARG_CACHE_SIZE]; argument
2350 struct arg_cache *entry; in lookup_arg_cache()
2352 entry = arg_cache[strnshash(code) % ARG_CACHE_SIZE]; in lookup_arg_cache()
2365 struct arg_cache *entry = NEW(struct arg_cache); in insert_arg_cache()
2372 entry->next = arg_cache[i]; in insert_arg_cache()
2373 arg_cache[i] = entry; in insert_arg_cache()
2379 struct arg_cache *e, *t; in clean_arg_cache()
2384 for (e = arg_cache[i]; (t = e); e = e->next, FREE(t)) in clean_arg_cache()
[all …]