Searched defs:cachenode (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/ucbcmd/ls/
H A Dls.c776 static struct cachenode { /* this struct must be zeroed before using */ struct
777 struct cachenode *lesschild; /* subtree whose entries < val */
778 struct cachenode *grtrchild; /* subtree whose entries > val */
784 static struct cachenode *
785 findincache(struct cachenode **head, id_t val)
787 register struct cachenode **parent = head;
788 register struct cachenode *c = *parent;
804 *parent = c = (struct cachenode *)calloc(1, sizeof (struct cachenode));
812 struct cachenode *
[all...]
/illumos-gate/usr/src/cmd/ls/
H A Dls.c251 static struct cachenode *findincache(struct cachenode **, long);
2185 struct cachenode { /* this struct must be zeroed before using */ struct
2186 struct cachenode *lesschild; /* subtree whose entries < val */
2187 struct cachenode *grtrchild; /* subtree whose entries > val */
2192 static struct cachenode *names, *groups;
2194 static struct cachenode *
2195 findincache(struct cachenode **head, long val)
2197 struct cachenode **parent = head;
2198 struct cachenode *
[all...]
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c6233 typedef struct cachenode { /* this struct must be zeroed before using */ struct
6234 struct cachenode *next; /* next in hash chain */

Completed in 85 milliseconds