Lines Matching full:users
180 } *users; variable
191 if ((users = calloc(nusers, sizeof(*users))) == NULL) in inituser()
192 errx(1, "allocate users"); in inituser()
194 for (usr = users, i = nusers; i-- > 0; usr++) { in inituser()
208 svusr = users; in usrrehash()
210 if ((users = calloc(nusers, sizeof(*users))) == NULL) in usrrehash()
211 errx(1, "allocate users"); in usrrehash()
213 for (usrn = users + usr->uid % nusers; usrn->name; usrn--) { in usrrehash()
214 if (usrn <= users) in usrrehash()
229 for (usr = users + uid % nusers, i = nusers; i-- > 0; usr--) { in user()
237 errx(1, "allocate users"); in user()
241 if (usr <= users) in user()
259 #define sortusers(users) \ argument
260 qsort((users), nusers, sizeof(struct user), cmpusers)
371 errx(1, "allocate users"); in douser()
372 memcpy(usrs, users, nusers * sizeof(*usrs)); in douser()