Lines Matching +defs:val +defs:names
777 struct cachenode *lesschild; /* subtree whose entries < val */
778 struct cachenode *grtrchild; /* subtree whose entries > val */
779 int val; /* the uid or gid of this entry */
781 char name[NMAX+1]; /* the string that val maps to */
782 } *names, *groups;
785 findincache(struct cachenode **head, id_t val)
791 if (val == c->val) {
794 } else if (val < c->val) {
805 c->val = val;
815 c = findincache(&names, uid);