Searched refs:cachenode (Results 1 – 3 of 3) sorted by relevance
776 static struct cachenode { /* this struct must be zeroed before using */ struct777 struct cachenode *lesschild; /* subtree whose entries < val */ argument778 struct cachenode *grtrchild; /* subtree whose entries > val */ argument784 static struct cachenode * argument785 findincache(struct cachenode **head, id_t val) in findincache()787 register struct cachenode **parent = head; in findincache()788 register struct cachenode *c = *parent; in findincache()804 *parent = c = (struct cachenode *)calloc(1, sizeof (struct cachenode)); in findincache()812 struct cachenode *c; in getname()830 struct cachenode *c; in getgroup()
251 static struct cachenode *findincache(struct cachenode **, long);2185 struct cachenode { /* this struct must be zeroed before using */ struct2186 struct cachenode *lesschild; /* subtree whose entries < val */ argument2187 struct cachenode *grtrchild; /* subtree whose entries > val */ argument2192 static struct cachenode *names, *groups; argument2194 static struct cachenode *2195 findincache(struct cachenode **head, long val) in findincache()2197 struct cachenode **parent = head; in findincache()2198 struct cachenode *c = *parent; in findincache()2214 c = calloc(1, sizeof (struct cachenode)); in findincache()[all …]
6189 typedef struct cachenode { /* this struct must be zeroed before using */ struct6190 struct cachenode *next; /* next in hash chain */ argument