Searched defs:limit (Results 1 - 25 of 257) sorted by relevance

1234567891011

/illumos-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_log2.c63 u_int32_t i, limit; local
65 limit = 1;
66 for (i = 0; limit < num; limit = limit << 1, i++)
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash_log2.c52 u_int32_t i, limit; local
54 limit = 1;
55 for (i = 0; limit < num; limit = limit << 1, i++);
/illumos-gate/usr/src/cmd/lp/lib/users/
H A Dstorepri.c48 int limit; local
51 printf(gettext("Priority limit for users not listed below: %d\n"), ppri_tbl->deflt_limit);
54 for (limit = PRI_MIN; limit <= PRI_MAX; limit++) {
55 if (ppri_tbl->users[limit - PRI_MIN])
57 printf(" %2d ", limit);
58 fdprintlist(1, ppri_tbl->users[limit - PRI_MIN]);
71 int limit; local
75 for (limit
[all...]
H A Dusermgmt.c69 int limit; local
71 /* root and lp do not get a limit */
86 for (limit = PRI_MIN; limit <= PRI_MAX; limit++)
87 if (bang_searchlist(user, ppri_tbl->users[limit - PRI_MIN]))
89 usr.priority_limit = limit;
135 int limit; local
141 for (limit = PRI_MIN; limit <
[all...]
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioCopy.cc46 Double limit = AUDIO_UNKNOWN_TIME; local
48 return (AudioCopy(from, to, frompos, topos, limit));
59 Double& limit) // amount to copy (updated)
61 return (from->Copy(to, frompos, topos, limit));
72 Double& limit) // amount to copy (updated)
74 return (from->AsyncCopy(to, frompos, topos, limit));
54 AudioCopy( Audio* from, Audio* to, Double& frompos, Double& topos, Double& limit) argument
67 AudioAsyncCopy( Audio* from, Audio* to, Double& frompos, Double& topos, Double& limit) argument
/illumos-gate/usr/src/test/zfs-tests/tests/functional/libzfs/
H A Dmany_fds.c43 struct rlimit limit; local
46 limit.rlim_cur = 65535;
47 limit.rlim_max = 65535;
49 if (setrlimit(RLIMIT_NOFILE, &limit) != 0) {
/illumos-gate/usr/src/psm/stand/boot/sparc/common/
H A Dget.c56 char *limit; local
60 limit = &buf[n - 1];
78 if (lp < limit)
/illumos-gate/usr/src/lib/print/libipp-listener/common/
H A Dcups-get-default.c49 int limit = 0; local
H A Dcups-get-classes.c47 int limit = 0; local
55 * limit
63 papiAttributeListGetInteger(operational, NULL, "limit", &limit);
H A Dcups-get-printers.c47 int limit = 0; local
55 * limit
63 papiAttributeListGetInteger(operational, NULL, "limit", &limit);
H A Dget-jobs.c47 int limit = 0; local
69 * limit
78 (void) papiAttributeListGetInteger(operational, NULL, "limit", &limit);
81 status = papiPrinterListJobs(svc, queue, req_attrs, type, limit, &j);
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Drealpath.c53 register char *limit = canon + MAXPATHLEN; local
82 if (d < limit)
87 while (d < limit && *s)
92 while (d < limit && (*d++ = *s++))
105 while (d < limit && *s) {
196 if (strlen(link) >= (limit - s)) {
197 (void) strncpy(s, link, limit - s);
198 *(limit - 1) = '\0';
/illumos-gate/usr/src/uts/intel/io/intel_nb5000/
H A Drank.h36 uint64_t limit; member in struct:rank_base
/illumos-gate/usr/src/lib/nsswitch/files/common/
H A Dbootparams_getbyname.c103 char *p, *host, *limit; local
125 limit = p + linelen;
128 while (p < limit && isspace(*p)) {
134 while (p < limit && !isspace(*p)) {
144 while (p < limit && isspace(*p)) {
147 if (p >= limit) {
H A Dgetnetent.c55 const char *limit, *linep, *addrstart; local
61 limit = line + linelen;
64 while (linep < limit && !isspace(*linep))
67 while (linep < limit && isspace(*linep))
69 if (linep == limit)
73 while (linep < limit && !isspace(*linep))
H A Dgetprotoent.c51 const char *limit, *linep; local
54 limit = line + linelen;
57 while (linep < limit && !isspace(*linep))
60 while (linep < limit && isspace(*linep))
62 if (linep == limit)
H A Dgetrpcent.c51 const char *limit, *linep; local
54 limit = line + linelen;
57 while (linep < limit && !isspace(*linep))
60 while (linep < limit && isspace(*linep))
62 if (linep == limit)
H A Dtsol_gettpent.c39 const char *limit, *linep, *keyp; local
42 limit = line + linelen;
46 while (*keyp && linep < limit && *linep != ':' && *keyp == *linep) {
50 if (*keyp == '\0' && linep < limit && *linep == ':')
/illumos-gate/usr/src/lib/libsocket/inet/
H A Dbootparams_getbyname.c82 const char *p, *limit; local
89 limit = p + lenstr;
92 while (p < limit && isspace(*p)) {
95 if (p >= limit) {
/illumos-gate/usr/src/lib/libbc/libc/compat/4.1/
H A Dvlimit.c48 vlimit(int limit, int value) argument
52 if (limit <= 0 || limit > NLIMITS)
55 if (getrlimit(limit - 1, &rlim) < 0)
61 return (setrlimit(limit - 1, &rlim));
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwcstol.c66 _WLONG_T multmin, limit; local
110 limit = _WLONG_MIN;
112 limit = -_WLONG_MAX;
114 multmin = limit / base;
122 if (val < limit + xx)
/illumos-gate/usr/src/common/util/
H A Dstrtol.c61 long limit; local
113 limit = LONG_MIN;
115 limit = -LONG_MAX;
116 multmin = limit / (long)base;
123 if (val < limit + xx)
H A Dstrtoll.c57 longlong_t limit; local
108 limit = LLONG_MIN;
110 limit = -LLONG_MAX;
111 multmin = limit / (longlong_t)base;
118 if (val < limit + xx)
/illumos-gate/usr/src/uts/common/io/bge/
H A Dbge_atomic.c75 bge_atomic_claim(uint64_t *count_p, uint64_t limit) argument
83 newval = NEXT(oldval, limit);
94 bge_atomic_next(uint64_t *sp, uint64_t limit) argument
102 newval = NEXT(oldval, limit);
/illumos-gate/usr/src/cmd/localedef/
H A Dtime.c83 add_list(const char *ptr[], char *str, int limit) argument
86 for (i = 0; i < limit; i++) {

Completed in 123 milliseconds

1234567891011