Searched defs:max (Results 176 - 185 of 185) sorted by relevance

12345678

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dregcomp.c271 /* chop 10 shorter than the max, to ensure meaning of "..." */ \
291 /* chop 10 shorter than the max, to ensure meaning of "..." */ \
794 int max = (reg_off_by_arg[OP(scan)] local
806 && off + noff < max)
2645 I32 max = REG_INFTY; local
2679 max = atoi(maxpos);
2680 if (!max && *maxpos != '0')
2681 max = REG_INFTY; /* meaning "infinity" */
2682 else if (max >= REG_INFTY)
2721 if (max >
[all...]
H A Dtoke.c1247 I32 max; /* last character in range */ local
1267 max = (U8)d[1]; /* last char in range */
1269 if (min > max) {
1272 (char)min, (char)max);
1276 if ((isLOWER(min) && isLOWER(max)) ||
1277 (isUPPER(min) && isUPPER(max))) {
1279 for (i = min; i <= max; i++)
1283 for (i = min; i <= max; i++)
1290 for (i = min; i <= max; i++)
7263 char *base, *Base, *max; local
7389 Base, max); local
7397 Base, max); local
[all...]
H A Dutil.c1471 I32 max; local
1475 for (max = i; environ[max]; max++) ;
1476 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1477 for (j=0; j<max; j++) { /* copy environment */
1482 tmpenv[max] = Nullch;
4022 int max = sockets[1] > sockets[0] ? sockets[1] : sockets[0]; local
4029 got = PerlSock_select(max + 1, &rset, NULL, NULL, &waitfor);
H A Dsv.c7084 register I32 max; local
7108 max = (unsigned char)*s++;
7109 for ( ; i <= max; i++) {
9697 UV max; local
9705 max = tbl->tbl_max;
9714 if (++riter > max) {
10162 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param) argument
10175 Newz(56, ncxs, max + 1, PERL_CONTEXT);
10332 I32 max = proto_perl->Tsavestack_max; local
10349 Newz(54, nss, max, AN
[all...]
H A Dperl.h1587 * Try to figure out max and min values for the integral types. THE CORRECT
2360 int max; /* the maximal number of scans to match */ member in struct:curcur
2471 may be greater than sizeof(IV), so don't assume that half max UV is max IV.
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfhdr.h1014 #define SF_FDIGITS 1024 /* max allowed fractional digits */
1015 #define SF_IDIGITS (8*1024) /* max number of digits in int part */
1017 #define SF_FDIGITS 256 /* max allowed fractional digits */
1018 #define SF_IDIGITS 1024 /* max number of digits in int part */
1122 #undef max macro
1124 #define max(x,y) ((x) > (y) ? (x) : (y)) macro
/osnet-11/usr/src/lib/libc/port/gen/
H A Dlocaltime.c2487 getnum(const char *strp, int *nump, int min, int max) argument
2497 if (num > max)
/osnet-11/usr/src/lib/libsqlite/tool/
H A Dlemon.c1238 ** but no more than "max". Make the point as close to max as possible.
1240 static int findbreak(msg,min,max)
1243 int max;
1247 for(i=spot=min; i<=max; i++){
1252 if( c=='-' && i<max-1 ) spot = i+1;
1806 int max, len; local
1807 max = 0;
1827 if( len>max ) max
[all...]
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_dataset.c6232 int max = 0; local
6241 if (width > max)
6242 max = width;
6245 return (max);
/osnet-11/usr/src/lib/libzonecfg/common/
H A Dlibzonecfg.c303 {ALIAS_MAXLWPS, "zone.max-lwps", "privileged", "deny", 100},
304 {ALIAS_MAXSHMMEM, "zone.max-shm-memory", "privileged", "deny", 0},
305 {ALIAS_MAXSHMIDS, "zone.max-shm-ids", "privileged", "deny", 0},
306 {ALIAS_MAXMSGIDS, "zone.max-msg-ids", "privileged", "deny", 0},
307 {ALIAS_MAXSEMIDS, "zone.max-sem-ids", "privileged", "deny", 0},
308 {ALIAS_MAXLOCKEDMEM, "zone.max-locked-memory", "privileged", "deny", 0},
309 {ALIAS_MAXSWAP, "zone.max-swap", "privileged", "deny", 0},
312 {ALIAS_MAXPROCS, "zone.max-processes", "privileged", "deny", 100},
4990 char *name, int min, int max)
5009 pool_value_set_uint64(val, (uint64_t)max);
4989 create_tmp_pset(char *pool_err, int err_size, pool_conf_t *pconf, pool_t *pool, char *name, int min, int max) argument
5496 int min, max; local
10168 int max; member in struct:paths_store
[all...]

Completed in 154 milliseconds

12345678