Searched refs:limit (Results 26 - 50 of 341) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/lib/nsswitch/files/common/
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 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 Dgetprojent.c62 const char *linep, *limit, *end; local
65 limit = line + linelen;
71 while (linep < limit && *linep++ != ':');
72 if (linep == limit)
100 const char *linep, *limit, *end; local
103 limit = line + linelen;
106 while (linep < limit && *linep++ != ':');
109 if (linep == limit || linep == line + 1)
/opensolaris-onvv-gate/usr/src/cmd/audio/utilities/
H A DAudio.cc235 Double limit = AUDIO_UNKNOWN_TIME; local
237 return (Copy(to, frompos, topos, limit));
241 // and src/dest start offsets. limit is either the time to copy or
244 // limit is updated with the amount of data actually copied.
250 Double& limit)
265 if (Undefined(limit)) {
266 len = limit;
268 len = limit - (frompos - svpos);
302 limit = frompos - svpos;
305 if (limit >
246 Copy( Audio* to, Double& frompos, Double& topos, Double& limit) argument
325 AsyncCopy( Audio* to, Double& frompos, Double& topos, Double& limit) argument
[all...]
/opensolaris-onvv-gate/usr/src/lib/libc/port/gen/
H A Dgetspent_r.c114 getfield(constp *nextp, constp limit, int uns, void *valp) argument
121 if (p == 0 || p >= limit) {
127 return (p < limit);
129 if ((len = limit - p) > sizeof (numbuf) - 1) {
138 if (len != limit - p) {
143 p = limit;
163 return (p < limit);
183 const char *p = instr, *limit; local
188 limit = p + lenstr;
190 ++p >= limit ||
[all...]
/opensolaris-onvv-gate/usr/src/cmd/audio/include/
H A DAudioLib.h54 Double& limit); // amount to copy (updated)
62 Double& limit); // amount to copy (updated)
/opensolaris-onvv-gate/usr/src/cmd/filebench/workloads/
H A Dfilemicro_delete.f48 flowop opslimit name=limit
H A Dcreatefiles.f43 flowop opslimit name=limit
/opensolaris-onvv-gate/usr/src/grub/grub-0.97/stage2/
H A Dsize_test24 # greater than the second argument (limit). If so, then exit with the
29 limit=$2
32 if test $size -gt $limit; then
33 echo "$file is too big ($size > $limit)."
/opensolaris-onvv-gate/usr/src/lib/nsswitch/nis/common/
H A Dgetpwnam.c62 char *linep, *limit, *uidp, *gidp, *newline; local
70 limit = linep + linelen;
76 while (linep < limit && *linep++ != ':') /* skip username */
78 while (linep < limit && *linep++ != ':') /* skip password */
80 if (linep == limit)
86 if (++linep >= limit || olduidlen == 0)
92 if (linep >= limit || oldgidlen == 0)
118 (void) bcopy(linep, uidp + idlen, limit - linep + 1);
/opensolaris-onvv-gate/usr/src/cmd/sh/
H A Dulimit.c68 rlim_t limit, new_limit; local
187 limit = RLIM_INFINITY;
191 new_limit = limit = 0;
200 new_limit = (limit * 10) + (*args - '0');
201 if (new_limit >= limit) {
202 limit = new_limit;
212 new_limit = limit * rlimtab[res].divisor;
213 if (new_limit >= limit) {
214 limit = new_limit;
233 rlimit.rlim_max = limit;
[all...]
/opensolaris-onvv-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) {
H A Dgetnetent_r.c138 const char *p, *numstart, *limit, *namestart; local
149 limit = p + lenstr;
151 while (p < limit && isspace(*p)) {
155 while (p < limit && !isspace(*p)) {
167 while (p < limit && isspace(*p)) {
170 if (p >= limit) {
177 } while (p < limit && !isspace(*p));
193 while (p < limit && isspace(*p)) {
201 if (p >= limit || *p == '#') { /* no aliases, no problem */
H A Dgetprotoent_r.c134 const char *p, *numstart, *namestart, *limit; local
145 limit = p + lenstr;
147 while (p < limit && isspace(*p)) {
151 while (p < limit && !isspace(*p)) {
163 while (p < limit && isspace(*p)) {
166 if (p >= limit) {
173 } while (p < limit && !isspace(*p));
187 while (p < limit && isspace(*p)) {
195 if (p >= limit || *p == '#') { /* no aliases, no problem */
/opensolaris-onvv-gate/usr/src/cmd/lp/cmd/
H A Dlpusers.c60 list = FALSE, limit = -1, deflt = -1; local
79 (void) printf(gettext("(assign priority limit to users)\n"));
83 "(assign default priority limit for balance of users)\n"));
86 (void) printf(gettext("(put users back to default priority limit)\n"));
116 if (limit != -1)
118 limit = (int)strtol(optarg,&p,10);
119 if (*p || limit<PRI_MIN || limit>PRI_MAX) {
144 if (((list || deflt != -1) && (limit != -1 || userlist))
173 if (del_user(ppri_tbl, user) && (limit
[all...]
/opensolaris-onvv-gate/usr/src/common/util/
H A Dstrtol.c57 long limit; local
108 limit = LONG_MIN;
110 limit = -LONG_MAX;
111 multmin = limit / (long)base;
118 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)
/opensolaris-onvv-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)
/opensolaris-onvv-gate/usr/src/lib/libnsl/nss/
H A Dgetrpcent_r.c122 const char *p, *numstart, *limit, *namestart; local
132 limit = p + lenstr;
134 while (p < limit && isspace(*p)) {
138 while (p < limit && !isspace(*p)) {
149 while (p < limit && isspace(*p)) {
152 if (p >= limit) /* Syntax error -- no RPC number */
157 } while (p < limit && !isspace(*p));
169 while (p < limit && isspace(*p)) {
177 if (p >= limit || *p == '#') { /* no aliases, no problem */
H A Dgethostent.c110 const char *p, *addrstart, *limit; local
156 limit = p + lenstr;
158 for (; p < limit && (p = memchr(p, '\n', limit - p)); p++)
186 limit = memchr(p, '\n', lenstr - (p - instr));
187 if (limit == NULL)
188 limit = instr + lenstr;
190 while (p < limit && isspace(*p))
193 while (p < limit && !isspace(*p))
195 if (p >= limit)
[all...]
/opensolaris-onvv-gate/usr/src/uts/i86pc/os/
H A Dgraphics.c119 static int limit = 0; local
121 bar[limit] = 0xff;
123 if (limit > 3)
124 bar[limit - 4] = 0x00;
126 bar[limit + BAR_STEPS - 4] = 0x00;
128 limit++;
129 if (limit == BAR_STEPS)
130 limit = 0;
/opensolaris-onvv-gate/usr/src/uts/common/io/bge/
H A Dbge_atomic.c77 bge_atomic_claim(uint64_t *count_p, uint64_t limit) argument
85 newval = NEXT(oldval, limit);
96 bge_atomic_next(uint64_t *sp, uint64_t limit) argument
104 newval = NEXT(oldval, limit);
/opensolaris-onvv-gate/usr/src/lib/libshell/common/bltins/
H A Dulimit.c22 * ulimit [-HSacdfmnstuv] [limit]
70 register char *limit; local
113 limit = argv[opt_info.index];
123 if(error_info.errors || (limit && label) || argc>opt_info.index+1)
133 if(limit)
137 if(strcmp(limit,e_unlimited)==0)
142 if((i=sh_strnum(limit,&last,2))==INFINITY || *last)
143 errormsg(SH_DICT,ERROR_system(1),e_number,limit);
152 errormsg(SH_DICT,ERROR_system(1),e_number,limit);
158 errormsg(SH_DICT,ERROR_system(1),e_overlimit,limit);
[all...]

Completed in 142 milliseconds

1234567891011>>