Searched refs:users (Results 51 - 75 of 208) sorted by relevance

123456789

/freebsd-13-stable/usr.sbin/lpr/lpd/
H A Dlpd.c57 * \3printer [users ...] [jobs ...]\n
59 * \4printer [users ...] [jobs ...]\n
61 * \5printer person [users ...] [jobs ...]\n
455 char *user[MAXUSERS]; /* users to process */
456 int users; /* # of users in user array */ variable
534 if (users >= MAXUSERS)
535 fatal(0, "Too many users");
536 user[users++] = cp;
571 if (users >
[all...]
/freebsd-13-stable/sys/kern/
H A Dkern_prot.c1843 * If users == 0 then cr_ref behaves similarly to refcount(9), in particular if
1845 * If users > 0 and curthread->td_realucred == cred, then updates are performed
1857 KASSERT(cr->cr_users > 0, ("%s: users %d not > 0 on cred %p",
1875 KASSERT(cr->cr_users > 0, ("%s: users %d not > 0 on cred %p",
1892 crunusebatch(struct ucred *cr, int users, int ref) argument
1895 KASSERT(users > 0, ("%s: passed users %d not > 0 ; cred %p",
1896 __func__, users, cr));
1898 KASSERT(cr->cr_users >= users, ("%s: users
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_client/
H A Drepos_diff.c149 /* Number of users of baton. Its pool will be destroyed 0 */
150 int users; member in struct:dir_baton
245 dir_baton->users++;
248 parent_baton->users++;
257 assert(db->users > 0);
259 db->users--;
260 if (db->users)
299 parent_baton->users++;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp117 for (User *CEUser : CE->users())
126 for (User *User : GV.users())
241 for (auto U : TypeCheckedLoadFunc->users()) {
H A DGlobalOpt.cpp190 /// This GV is a pointer root. Loop over all users of the global and clean up
277 /// We just marked GV constant. Loop over all users of the global, cleaning up
397 return llvm::all_of(U->users(),
418 // Otherwise, it must be a GEP. Check it and its users are safe to SRA.
425 for (User *U : GV->users()) {
432 // Check the gep and it's users are safe to SRA
513 // Loop over all users and create replacement variables for used aggregate
515 for (User *GEP : GV->users()) {
642 /// Return true if all users of the specified value will trap if the value is
647 for (const User *U : V->users()) {
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DPHITransAddr.cpp203 for (User *U : PHIIn->users()) {
239 for (User *U : APHIOp->users()) {
291 for (User *U : LHS->users()) {
H A DCodeMetrics.cpp57 if (!all_of(V->users(), [&](const User *U) { return EphValues.count(U); }))
H A DCallPrinter.cpp68 for (User *U : (*F).users())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp306 // assigned. This works out fine as the users of Spills capture the info about
935 for (User *U : A->users()) {
1224 for (auto User : AI->users()) {
1257 for (auto U : AI->users()) {
1288 for (auto U : AI->users()) {
1321 for (User *U : AI->users()) {
1511 // Collect all users that precede coro.begin.
1514 for (User *U : SpillDef->users()) {
1523 // Recursively collect users before coro.begin.
1527 for (User *U : Def->users()) {
[all...]
H A DCoroElide.cpp291 for (User *U : CoroId->users()) {
305 for (User *U : CB->users())
H A DCoroInstr.h85 for (User *U : users())
92 for (User *U : users())
132 // TODO: Add a check that any remaining users of Inst are after coro.begin
133 // or add code to move the users after coro.begin.
/freebsd-13-stable/usr.sbin/lpr/common_source/
H A Ddisplayq.c240 for (i = 0; i < users && cp - line + 1 + strlen(user[i]) <
489 if (users == 0 && requests == 0)
494 for (u = user; u < &user[users]; u++)
/freebsd-13-stable/contrib/wpa/wpa_supplicant/
H A Dbss.h33 unsigned int users; member in struct:wpa_bss_anqp
H A Dbss.c54 * The allocated ANQP data structure has its users count set to 1. It may be
67 anqp->users = 1;
126 if (bss->anqp && bss->anqp->users > 1) {
131 anqp->users = 1;
132 bss->anqp->users--;
159 anqp->users--;
160 if (anqp->users > 0) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp51 for (const User *U : C->users())
H A DCallPromotionUtils.cpp116 for (User *U : OrigInst->users())
166 // Save the users of the calling instruction. These uses will be changed to
169 for (User *U : CB.users())
H A DSimplifyIndVar.cpp37 STATISTIC(NumFoldedUser, "Number of IV users folded into a constant");
75 /// Iteratively perform simplification on a worklist of users of the
77 /// all simplifications to users of an IV.
462 for (auto *U : WO->users()) {
538 // Collect users of the trunc that look like comparisons against invariants.
541 for (auto *U : TI->users()) {
542 // We don't care about users in unreachable blocks.
780 for (auto *U : BO->users()) {
805 for (User *U : Def->users()) {
809 // Also ensure unique worklist users
[all...]
H A DSplitModule.cpp76 // Adds all GlobalValue users of V to the same cluster as GV.
79 for (auto *U : V->users()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCLowerMASSVEntries.cpp167 // Call to lowerMASSVCall() invalidates the iterator over users upon
168 // replacing the users. Precomputing the current list of users allows us to
171 for (auto *User: Func.users())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp169 for (const User *U : CleanupPad->users())
279 for (const User *U : CatchPad->users()) {
327 for (const User *U : CleanupPad->users()) {
397 for (const User *U : CatchPad->users()) {
430 for (const User *U : CleanupPad->users()) {
564 for (const User *U : Cleanup->users())
588 for (const User *U : Catch->users())
625 for (const User *U : Cleanup->users()) {
/freebsd-13-stable/contrib/ncurses/
H A DMakefile.os2110 $(WWWGET) ftp://ftp.math.ohio-state.edu/pub/users/ilya/os2/$@ > $@
/freebsd-13-stable/contrib/netbsd-tests/usr.bin/id/
H A Dt_id.sh44 echo "uid=100(test) gid=100(users) groups=100(users),0(wheel)" >expout
54 echo "uid=100(test) gid=100(users) euid=0(root) egid=0(wheel) groups=100(users),0(wheel)" >expout
97 echo "users wheel" >expout
129 echo "users" >expout
145 echo "users" >expout
152 echo "users" >expout
167 echo "users" >expout
174 echo "users" >expou
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DAlignmentFromAssumptions.cpp306 // affect other users.
312 // Apply the assumption to all other users of the specified pointer.
315 for (User *J : AAPtr->users()) {
370 for (User *UJ : J->users()) {
/freebsd-13-stable/share/mk/
H A Dbsd.opts.mk35 # Define MK_* variables (which are either "yes" or "no") for users
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp468 SmallVector<User *, 8> Users(Alloca->users());
488 for (User *CastUser : Inst->users()) {
632 for (User *User : Val->users()) {
684 // Don't collect the users of this.
760 for (const User *U : GV.users()) {
950 // touch the users.

Completed in 201 milliseconds

123456789