Lines Matching refs:least
132 while ((tp = getleast()) != NULL) /* get least uid of all files, */
141 * getleast returns ptr to least (lowest uid) element of current
147 struct tacct *tp, *least;
149 least = NULL;
153 if (least == NULL ||
154 tp->ta_uid < least->ta_uid ||
155 ((tp->ta_uid == least->ta_uid) &&
157 (strncmp(tp->ta_name, least->ta_name, NSZ) < 0)))
158 least = tp;
160 return(least);