Lines Matching full:users
183 } *users; variable
194 if (!(users = calloc(nusers, sizeof(struct user)))) { in inituser()
195 err(1, "allocate users"); in inituser()
198 for (usr = users, i = nusers; --i >= 0; usr++) { in inituser()
212 svusr = users; in usrrehash()
214 if (!(users = calloc(nusers, sizeof(struct user)))) in usrrehash()
215 err(1, "allocate users"); in usrrehash()
217 for (usrn = users + (usr->uid&(nusers - 1)); in usrrehash()
220 if (usrn <= users) in usrrehash()
221 usrn = users + nusers; in usrrehash()
235 for (usr = users + (uid&(nusers - 1)), i = nusers; in user()
246 err(1, "allocate users"); in user()
251 if (usr <= users) in user()
252 usr = users + nusers; in user()
266 #define sortusers(users) (qsort((users), nusers, sizeof(struct user), \ argument
388 err(1, "allocate users"); in douser()
389 memcpy(usrs, users, nusers * sizeof(struct user)); in douser()