Lines Matching full:users
228 } *users;
239 if (!(users =
241 errx(1, "allocate users");
243 for (usr = users, i = nusers; --i >= 0; usr++) {
257 svusr = users;
259 if (!(users = (struct user *)calloc(nusers,sizeof(struct user))))
260 errx(1, "allocate users");
262 for (usrn = users + (usr->uid&(nusers - 1)); usrn->name;
264 if (usrn <= users)
265 usrn = users + nusers;
279 for (usr = users + (uid&(nusers - 1)), i = nusers; --i >= 0;
293 errx(1, "allocate users");
300 if (usr <= users)
301 usr = users + nusers;
317 #define sortusers(users) (qsort((users),nusers,sizeof(struct user), \
461 errx(1, "allocate users");
462 bcopy(users,usrs,nusers * sizeof(struct user));