Lines Matching defs:cachenode
245 static struct cachenode *findincache(struct cachenode **, long);
2178 struct cachenode { /* this struct must be zeroed before using */
2179 struct cachenode *lesschild; /* subtree whose entries < val */
2180 struct cachenode *grtrchild; /* subtree whose entries > val */
2185 static struct cachenode *names, *groups;
2187 static struct cachenode *
2188 findincache(struct cachenode **head, long val)
2190 struct cachenode **parent = head;
2191 struct cachenode *c = *parent;
2207 c = calloc(1, sizeof (struct cachenode));
2225 struct cachenode *c;
2252 struct cachenode *c;