Home
last modified time | relevance | path

Searched refs:users (Results 1 – 25 of 913) sorted by relevance

12345678910>>...37

/openbsd/usr.bin/lex/
H A DChangeLog288 2012-08-08 Robert Minsk <rminsk@users.sourceforge.net>
292 2012-08-08 Robert Minsk <rminsk@users.sourceforge.net>
335 2012-08-04 nomis52 <nomis52@users.sourceforge.net>
379 2012-07-29 Will Estes <wlestes@users.sourceforge.net>
440 2012-07-23 Will Estes <wlestes@users.sourceforge.net>
446 2012-07-22 Will Estes <wlestes@users.sourceforge.net>
453 2012-07-22 Will Estes <wlestes@users.sourceforge.net>
470 2012-07-22 Will Estes <wlestes@users.sourceforge.net>
474 2012-06-23 Will Estes <wlestes@users.sourceforge.net>
727 nullnix@users.sourceforge.net
[all …]
/openbsd/usr.sbin/cron/
H A Ddatabase.c92 TAILQ_INIT(&new_db->users); in load_database()
106 if (!TAILQ_EMPTY(&new_db->users) && in load_database()
107 (u = TAILQ_FIRST(&old_db->users))) { in load_database()
109 TAILQ_REMOVE(&old_db->users, u, entries); in load_database()
111 TAILQ_INSERT_HEAD(&old_db->users, in load_database()
142 while ((u = TAILQ_FIRST(&old_db->users))) { in load_database()
143 TAILQ_REMOVE(&old_db->users, u, entries); in load_database()
160 TAILQ_FOREACH(u, &db->users, entries) { in find_user()
234 TAILQ_REMOVE(&old_db->users, u, entries); in process_crontab()
247 TAILQ_REMOVE(&old_db->users, u, entries); in process_crontab()
[all …]
/openbsd/gnu/usr.bin/cvs/contrib/
H A Dmfpipe.in55 $users = "$users $arg";
59 if ($users) {
60 $mailcmd = "$mailcmd $users";
75 print MAIL $_ if ($users);
H A Dlog.in67 my $users;
79 $users = "$users " . shift @ARGV;
125 if ($users) {
126 $mailcmd = "$mailcmd $users";
/openbsd/usr.sbin/lpr/lprm/
H A Dlprm.c69 int users; /* # of users in user array */ variable
109 users = -1; in main()
132 if (users < 0 && argc != 0) in main()
140 if (users >= MAXUSERS) in main()
142 user[users++] = argv[0]; in main()
/openbsd/usr.sbin/npppd/npppd/
H A Dnpppd-users1 # $OpenBSD: npppd-users,v 1.1 2012/09/20 12:51:43 yasuoka Exp $
2 # sample npppd-users file. see npppd-users(5)
H A Dnpppd.c787 slist users; in npppd_get_ppp_by_id() local
793 slist_init(&users); in npppd_get_ppp_by_id()
799 for (slist_itr_first(&users); slist_itr_has_next(&users); ) { in npppd_get_ppp_by_id()
807 slist_fini(&users); in npppd_get_ppp_by_id()
1258 slist_init(&users); in pipex_periodic()
1288 slist_fini(&users); in pipex_periodic()
1297 slist_itr_first(&users); in pipex_periodic()
1323 slist_fini(&users); in pipex_periodic()
2267 slist users; in npppd_auth_finalizer_periodic() local
2283 slist_init(&users); in npppd_auth_finalizer_periodic()
[all …]
/openbsd/usr.sbin/quot/
H A Dquot.c183 } *users; variable
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()
217 for (usrn = users + (usr->uid&(nusers - 1)); in usrrehash()
220 if (usrn <= users) in usrrehash()
221 usrn = users + nusers; in usrrehash()
251 if (usr <= users) in user()
252 usr = users + nusers; in user()
266 #define sortusers(users) (qsort((users), nusers, sizeof(struct user), \ argument
[all …]
/openbsd/gnu/llvm/libcxx/docs/DesignDocs/
H A DUnspecifiedBehaviorRandomization.rst20 other implementatiosn because tests might silently fail and the users might
26 Provide functionality for randomizing the unspecified behavior so that the users
32 to the standard its worst case should be `O(n log n)`. This effort helps users
43 * This macro is off by default because users should enable it only for testing
52 * The users can fix the seed of the random number generator by providing
57 * Computation penalty, we think users are OK with that if they use this feature.
67 doing it gradually and sustainably. This is also bad for users to depend on the
H A DHeaderRemovalPolicy.rst19 headers becomes smaller. This improves the compilation time when users include
23 A disadvantage is that users unknowingly depend on these transitive includes.
31 that users will have to fix their missing includes in order to upgrade to a
47 When users define ``_LIBCPP_REMOVE_TRANSITIVE_INCLUDES``, libc++ will not
49 useful for users to aid the transition to a newer language version, or by users
/openbsd/usr.sbin/lpr/common_source/
H A Drmjob.c55 extern int users; /* # of users in user array */
104 if (users < 0) { in rmjob()
109 users = 1; in rmjob()
281 if (users == 0 && requests == 0) in chk()
294 for (u = user; u < &user[users]; u++) in chk()
345 for (i = 0; i < users; i++) { in rmremote()
/openbsd/gnu/llvm/llvm/docs/
H A DPackaging.rst16 LLVM's API changes with each release, so users are likely to want, for example,
24 However, such a build is currently incompatible with users who build without
26 in user code. We recommend allowing users to install both optimized and debug
38 should turn it back on to let users debug their programs.
51 while running ``make`` to re-enable it. This will allow users to build with
/openbsd/usr.sbin/lpr/lpq/
H A Dlpq.c63 int users; /* # of users in user array */ variable
122 if (users >= MAXUSERS) in main()
124 user[users++] = *argv; in main()
/openbsd/usr.sbin/npppd/
H A DMakefile11 ${INSTALL} -C -o root -g wheel -m 0600 ${.CURDIR}/npppd/npppd-users \
12 ${DESTDIR}/etc/npppd/npppd-users
/openbsd/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerKernelAttributes.cpp107 for (User *U : CI->users()) { in processUse()
226 for (User *ICmp : BlockCount->users()) { in processUse()
276 for (User *U : GroupSize->users()) { in processUse()
281 for (User *UMin : ZextGroupSize->users()) { in processUse()
332 for (auto *U : BasePtr->users()) { in runOnModule()
H A DAMDGPUOpenCLEnqueuedBlockLowering.cpp78 for (auto *U : F->users()) { in collectCallers()
96 for (User *U : U->users()) in collectFunctionUsers()
134 for (User *U : F.users()) in runOnModule()
/openbsd/usr.bin/rusers/
H A Drusers.c85 rusers_utmp *users; member
260 entry->users = ut; in rusers_reply()
278 for (i = 0, ut = entry->users; i < entry->count; i++, ut++) { in rusers_reply()
283 free(entry->users); in rusers_reply()
315 entry->users = ut; in rusers_reply_3()
333 for (i = 0, ut = entry->users; i < entry->count; i++, ut++) { in rusers_reply_3()
338 free(entry->users); in rusers_reply_3()
642 for (i = 0, ut = entry->users; i < entry->count; i++, ut++) { in print_entry()
689 entry->users = &hostinfo[i].users[j]; in expandhosts()
690 entry->idle = entry->users->ut_idle; in expandhosts()
/openbsd/gnu/llvm/lld/cmake/modules/
H A DLLDConfig.cmake.in1 # This file allows users to call find_package(LLD) and pick up our targets.
13 # Provide all our library targets to users.
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-world/
H A DHTML-WebDAO.tml8 Zahatski Aliaksandr, E<lt>zagap@users.sourceforge.netE<gt>
16 'Zahatski Aliaksandr, E<lt>zagap@users.sourceforge.netE<gt>',
/openbsd/gnu/llvm/llvm/tools/llvm-reduce/deltas/
H A DUtils.cpp31 return any_of(F.users(), [](User *U) { in hasAliasUse()
37 return any_of(F.users(), [](User *U) { in hasAliasOrBlockAddressUse()
/openbsd/gnu/llvm/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp545 for (User *U : V->users()) in SRAGlobal()
1143 for (User *U : GV->users()) { in TryToShrinkGlobalToBoolean()
1403 for (auto *U : C->users()) { in allNonInstructionUsersCanBeMadeInstructions()
1424 for (auto *U : C->users()) { in makeAllConstantUsesInstructions()
1706 for (User *U : F->users()) { in ChangeCalleesToFastCall()
1723 for (User *U : F->users()) { in RemoveAttribute()
1746 for (User *U : F->users()) { in hasChangeableCC()
1787 for (User *U : F.users()) { in isValidCandidateForColdCC()
1803 for (User *U : F->users()) { in changeCallSitesToColdCC()
1847 for (User *U : F->users()) { in hasMustTailCallers()
[all …]
H A DFunctionSpecialization.cpp107 for (auto *User : Alloca->users()) { in getPromotableAlloca()
176 for (auto *User : F.users()) { in promoteConstantStackValues()
421 for (User *U : F->users()) { in findSpecializations()
582 for (auto *User : I->users()) in getUserBonus()
598 for (auto *U : A->users()) { in getSpecializationBonus()
620 for (User *U : A->users()) { in getSpecializationBonus()
737 for (User *U : F->users()) in updateCallSites()
/openbsd/gnu/usr.bin/cvs/src/
H A Dadmin.c699 char **users; local
709 line2argv (&argc, &users, arg + 2, " ,\t\n");
712 RCS_addaccess (rcs, users[u]);
717 RCS_delaccess (rcs, users[u]);
718 free_names (&argc, users);
738 line2argv (&argc, &users, p, " \t\n");
743 RCS_addaccess (rcs, users[u]);
744 free_names (&argc, users);
/openbsd/gnu/llvm/clang/cmake/modules/
H A DClangConfig.cmake.in1 # This file allows users to call find_package(Clang) and pick up our targets.
14 # Provide all our library targets to users.
/openbsd/gnu/llvm/llvm/lib/Target/NVPTX/
H A DNVPTXLowerArgs.cpp211 for (Value *V : I.OldInstruction->users()) in convertToParamAS()
275 for (User *CurUser : Ctx.InitialVal->users()) { in adjustByValArgAlignment()
341 llvm::append_range(ValuesToCheck, V->users()); in handleByValParam()
346 if (llvm::all_of(Arg->users(), IsALoadChain)) { in handleByValParam()
349 SmallVector<User *, 16> UsersToUpdate(Arg->users()); in handleByValParam()

12345678910>>...37