Searched refs:users (Results 26 - 50 of 208) sorted by relevance

123456789

/freebsd-13-stable/tests/sys/cddl/zfs/tests/acl/nontrivial/
H A Dzfs_acl_chmod_xattr_001_pos.ksh78 set -A users \
236 while (( i < ${#users[@]} )); do
237 setup_test_files $TESTDIR/basedir ${users[i]} ${users[((i+1))]}
244 "${users[((i+2))]}" "${users[((i+3))]}"
248 "${users[((i+2))]}" "${users[((i+3))]}"
H A Dzfs_acl_chmod_owner_001_pos.ksh82 set -A users \
382 while (( i < ${#users[@]} )); do
383 setup_test_files $TESTDIR/basedir ${users[i]} ${users[((i+1))]}
389 "${users[((i+2))]}" "${users[((i+3))]}"
393 "${users[((i+2))]}" "${users[((i+3))]}"
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUAlwaysInlinePass.cpp63 for (User *U : GV.users())
85 // No need to look at further users, but we do need to inline any callers.
89 for (User *UU : U->users())
H A DAMDGPULowerIntrinsics.cpp129 for (auto *U : F.users()) {
/freebsd-13-stable/sys/sys/
H A Ducred.h119 int users; member in struct:credbatch
127 crb->users = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantProp.cpp98 // Add all of the users of this instruction to the worklist, they might
100 for (User *U : I->users()) {
H A DBDCE.cpp41 /// If an instruction is trivialized (dead), then the chain of users of that
48 // Initialize the worklist with eligible direct users.
51 for (User *JU : I->users()) {
71 // DFS through subsequent users while tracking visits to avoid cycles.
82 for (User *KU : J->users()) {
H A DLoopRerollPass.cpp502 for (User *U : I->users()) {
520 for (auto *User : IV->users()) {
540 // The users of the IV must be a binary operation or a comparison
545 for (auto *UU : User->users()) {
640 for (User *U : C->users()) {
672 // Collect the set of all users of the provided root instruction. This set of
673 // users contains not only the direct users of the root instruction, but also
674 // all users of those users, an
[all...]
H A DInstSimplifyPass.cpp58 for (User *U : I.users())
H A DReg2Mem.cpp52 for (const User *U : Inst->users()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalSplit.cpp56 for (User *U : GV.users()) {
119 for (User *U : GV.users()) {
H A DSyntheticCountsPropagation.cpp67 for (auto *U : F.users()) {
H A DAlwaysInliner.cpp52 for (User *U : F.users())
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombineWorklist.h106 /// When an instruction is simplified, add all users of the instruction
109 for (User *U : I.users())
/freebsd-13-stable/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c58 char *users; /* becomes list of login names */ local
89 || !(users = strtok((char *) 0, fieldsep))
102 && list_match(users, user, user_match, login_access_opts));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DStatepoint.h234 for (auto *U : users())
351 for (const User *U : users())
363 for (const User *LandingPadUser : LandingPad->users()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetFrameLoweringImpl.cpp143 for (const User *U : F.users())
/freebsd-13-stable/tests/sys/acl/
H A Drun168 my ($group, $passwd, $gid, $users) = split /:/;
169 foreach my $u (split /,/, $users) {
/freebsd-13-stable/crypto/heimdal/kadmin/
H A DMakefile.am54 add_random_users_SOURCES = add-random-users.c
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCanonicalizeFreezeInLoops.cpp162 for_each(PHI.users(), Visit);
163 for_each(Info.StepInst->users(), Visit);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h105 user_range users() { return user_range(user_begin(), user_end()); } function in class:llvm::VPValue
106 const_user_range users() const { function in class:llvm::VPValue
115 // Check if all users match the first user.
131 /// edges from VPValue's users to their defs.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp151 const auto &Users = P->users();
170 const auto &Users = P->users();
/freebsd-13-stable/usr.sbin/lpr/common_source/
H A Dlp.h146 struct req_user_head users; /* list of users to query/delete */ member in struct:request
177 extern char *user[]; /* users to process */
178 extern int users; /* # of users in user array */
/freebsd-13-stable/tools/tools/portsinfo/
H A Dportsinfo.sh22 The FreeBSD Ports Collection offers a simple way for users and
/freebsd-13-stable/lib/libcasper/services/cap_pwd/
H A Dcap_pwd.c369 nvlist_t *limits, *users; local
379 if (nvlist_exists_nvlist(limits, "users"))
380 nvlist_free_nvlist(limits, "users");
382 users = nvlist_create(0);
386 nvlist_add_number(users, nvlname, (uint64_t)uids[i]);
391 nvlist_add_string(users, nvlname, names[i]);
393 nvlist_move_nvlist(limits, "users", users);
448 * If no limit was set on allowed users, then all users ar
[all...]

Completed in 323 milliseconds

123456789