Searched defs:least (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/acct/
H A Dacctmerg.c132 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; local
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);
[all...]
/illumos-gate/usr/src/lib/libshell/common/edit/
H A Dhistory.c1131 register int least = (int)hp->histind-hp->histsize; local
1136 if(--command < least)

Completed in 46 milliseconds