max 72 modules/cache/cache_hash.c int count, max;
max 80 modules/cache/cache_hash.c return calloc(1, sizeof(*ht->array) * (max + 1));
max 91 modules/cache/cache_hash.c ht->max = size;
max 92 modules/cache/cache_hash.c ht->array = alloc_array(ht, ht->max);
max 117 modules/cache/cache_hash.c if (hi->index > hi->ht->max)
max 218 modules/cache/cache_hash.c for (hep = &ht->array[hash % ht->max], he = *hep;
max 139 modules/mappers/mod_imagemap.c double max[2], min[2];
max 141 modules/mappers/mod_imagemap.c max[0] = coords[0][X];
max 145 modules/mappers/mod_imagemap.c max[0] = coords[1][X];
max 150 modules/mappers/mod_imagemap.c max[1] = coords[0][Y];
max 154 modules/mappers/mod_imagemap.c max[1] = coords[1][Y];
max 158 modules/mappers/mod_imagemap.c return ((point[X] >= min[0] && point[X] <= max[0]) &&
max 159 modules/mappers/mod_imagemap.c (point[Y] >= min[1] && point[Y] <= max[1]));
max 2248 modules/mappers/mod_negotiation.c int j, max;
max 2253 modules/mappers/mod_negotiation.c || !(max = variant->content_languages->nelts)) {
max 2257 modules/mappers/mod_negotiation.c for (j = 0; j < max; ++j) {
max 440 modules/proxy/mod_proxy_ftp.c apr_size_t len, max;
max 459 modules/proxy/mod_proxy_ftp.c max = sizeof(ctx->buffer) - strlen(ctx->buffer) - 1;
max 460 modules/proxy/mod_proxy_ftp.c if (len > max) {
max 461 modules/proxy/mod_proxy_ftp.c len = max;
max 231 os/unix/unixd.c rlim_t max = 0;
max 257 os/unix/unixd.c max = atol(str);
max 263 os/unix/unixd.c if (max) {
max 272 os/unix/unixd.c if (max) {
max 273 os/unix/unixd.c limit->rlim_max = max;
max 222 srclib/apr-util/include/apr_memcache.h apr_uint32_t max,
max 393 srclib/apr-util/memcache/apr_memcache.c max, /* hard maximum */
max 215 srclib/apr/include/apr_time.h apr_size_t max, const char *format,
max 78 srclib/apr/tables/apr_hash.c unsigned int count, max;
max 92 srclib/apr/tables/apr_hash.c return apr_pcalloc(ht->pool, sizeof(*ht->array) * (max + 1));
max 102 srclib/apr/tables/apr_hash.c ht->max = INITIAL_MAX;
max 103 srclib/apr/tables/apr_hash.c ht->array = alloc_array(ht, ht->max);
max 125 srclib/apr/tables/apr_hash.c if (hi->index > hi->ht->max)
max 170 srclib/apr/tables/apr_hash.c new_max = ht->max * 2 + 1;
max 178 srclib/apr/tables/apr_hash.c ht->max = new_max;
max 263 srclib/apr/tables/apr_hash.c for (hep = &ht->array[hash & ht->max], he = *hep;
max 296 srclib/apr/tables/apr_hash.c sizeof(*ht->array) * (orig->max + 1) +
max 301 srclib/apr/tables/apr_hash.c ht->max = orig->max;
max 306 srclib/apr/tables/apr_hash.c sizeof(*ht->array) * (orig->max + 1));
max 308 srclib/apr/tables/apr_hash.c for (i = 0; i <= ht->max; i++) {
max 357 srclib/apr/tables/apr_hash.c if (ht->count > ht->max) {
max 423 srclib/apr/tables/apr_hash.c res->max = (overlay->max > base->max) ? overlay->max : base->max;
max 424 srclib/apr/tables/apr_hash.c if (base->count + overlay->count > res->max) {
max 425 srclib/apr/tables/apr_hash.c res->max = res->max * 2 + 1;
max 427 srclib/apr/tables/apr_hash.c res->array = alloc_array(res, res->max);
max 433 srclib/apr/tables/apr_hash.c for (k = 0; k <= base->max; k++) {
max 435 srclib/apr/tables/apr_hash.c i = iter->hash & res->max;
max 446 srclib/apr/tables/apr_hash.c for (k = 0; k <= overlay->max; k++) {
max 448 srclib/apr/tables/apr_hash.c i = iter->hash & res->max;
max 151 srclib/apr/time/unix/timestr.c (*retsize) = strftime(s, max, format, &tm);
max 129 srclib/apr/time/win32/timestr.c char *new_format = (char *) malloc(max + 11);
max 134 srclib/apr/time/win32/timestr.c for (i = 0, j = 0; (i < format_length && j < max);) {
max 141 srclib/apr/time/win32/timestr.c length_written = apr_snprintf(new_format + j, max - j, "%2d",
max 143 srclib/apr/time/win32/timestr.c j = (length_written == -1) ? max : (j + length_written);
max 169 srclib/apr/time/win32/timestr.c length_written = apr_snprintf(new_format + j, max - j, "%2d",
max 171 srclib/apr/time/win32/timestr.c j = (length_written == -1) ? max : (j + length_written);
max 181 srclib/apr/time/win32/timestr.c if (j >= max) {
max 186 srclib/apr/time/win32/timestr.c return_value = strftime(s, max, new_format, tm);
max 213 srclib/apr/time/win32/timestr.c (*retsize) = win32_strftime_extra(s, max, format, &tm);
max 1248 srclib/pcre/pcre.c int max = -1;
max 1263 srclib/pcre/pcre.c if (*p == '}') max = min; else
max 1267 srclib/pcre/pcre.c max = 0;
max 1268 srclib/pcre/pcre.c while((digitab[*p] & ctype_digit) != 0) max = max * 10 + *p++ - '0';
max 1269 srclib/pcre/pcre.c if (max < 0 || max > 65535)
max 1274 srclib/pcre/pcre.c if (max < min)
max 1286 srclib/pcre/pcre.c *maxp = max;
max 4569 srclib/pcre/pcre.c int min, max;
max 4687 srclib/pcre/pcre.c ptr = read_repeat_counts(ptr+2, &min, &max, errorptr);
max 4689 srclib/pcre/pcre.c if ((min == 0 && (max == 1 || max == -1)) ||
max 4690 srclib/pcre/pcre.c (min == 1 && max == -1))
max 4716 srclib/pcre/pcre.c ptr = read_repeat_counts(ptr+1, &min, &max, errorptr);
max 4721 srclib/pcre/pcre.c if ((min == 0 && (max == 1 || max == -1)) ||
max 4722 srclib/pcre/pcre.c (min == 1 && max == -1))
max 4734 srclib/pcre/pcre.c length += lastitemlength + ((max > 0)? 3 : 1);
max 5015 srclib/pcre/pcre.c ptr = read_repeat_counts(ptr+2, &min, &max, errorptr);
max 5017 srclib/pcre/pcre.c if ((min == 0 && (max == 1 || max == -1)) ||
max 5018 srclib/pcre/pcre.c (min == 1 && max == -1))
max 5374 srclib/pcre/pcre.c ptr = read_repeat_counts(ptr+2, &min, &max, errorptr);
max 5377 srclib/pcre/pcre.c else if (c == '*') { min = 0; max = -1; ptr++; }
max 5378 srclib/pcre/pcre.c else if (c == '+') { min = 1; max = -1; ptr++; }
max 5379 srclib/pcre/pcre.c else if (c == '?') { min = 0; max = 1; ptr++; }
max 5380 srclib/pcre/pcre.c else { min = 1; max = 1; }
max 5390 srclib/pcre/pcre.c if (max > 0) length += (max - 1) * (duplength + 3 + 2*LINK_SIZE);
max 5402 srclib/pcre/pcre.c if (max > min) /* Need this test as max=-1 means no limit */
max 5403 srclib/pcre/pcre.c length += (max - min) * (duplength + 3 + 2*LINK_SIZE)
max 6091 srclib/pcre/pcre.c int max;
max 7042 srclib/pcre/pcre.c max = rep_max[c]; /* zero for max => infinity */
max 7043 srclib/pcre/pcre.c if (max == 0) max = INT_MAX;
max 7050 srclib/pcre/pcre.c max = GET2(ecode, 3);
max 7051 srclib/pcre/pcre.c if (max == 0) max = INT_MAX;
max 7079 srclib/pcre/pcre.c if (min == max) continue;
max 7089 srclib/pcre/pcre.c if (fi >= max || !match_ref(offset, eptr, length, md, ims))
max 7101 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7147 srclib/pcre/pcre.c max = rep_max[c]; /* zero for max => infinity */
max 7148 srclib/pcre/pcre.c if (max == 0) max = INT_MAX;
max 7155 srclib/pcre/pcre.c max = GET2(ecode, 3);
max 7156 srclib/pcre/pcre.c if (max == 0) max = INT_MAX;
max 7161 srclib/pcre/pcre.c min = max = 1;
max 7200 srclib/pcre/pcre.c if (min == max) continue;
max 7215 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject) RRETURN(MATCH_NOMATCH);
max 7235 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject) RRETURN(MATCH_NOMATCH);
max 7253 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7280 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7321 srclib/pcre/pcre.c max = rep_max[c]; /* zero for max => infinity */
max 7322 srclib/pcre/pcre.c if (max == 0) max = INT_MAX;
max 7329 srclib/pcre/pcre.c max = GET2(ecode, 3);
max 7330 srclib/pcre/pcre.c if (max == 0) max = INT_MAX;
max 7335 srclib/pcre/pcre.c min = max = 1;
max 7351 srclib/pcre/pcre.c if (min == max) continue;
max 7362 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject) RRETURN(MATCH_NOMATCH);
max 7374 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7477 srclib/pcre/pcre.c min = max = GET2(ecode, 1);
max 7484 srclib/pcre/pcre.c max = GET2(ecode, 1);
max 7498 srclib/pcre/pcre.c max = rep_max[c]; /* zero for max => infinity */
max 7499 srclib/pcre/pcre.c if (max == 0) max = INT_MAX;
max 7544 srclib/pcre/pcre.c if (min == max) continue;
max 7552 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject) RRETURN(MATCH_NOMATCH);
max 7567 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7611 srclib/pcre/pcre.c DPRINTF(("matching %c{%d,%d} against subject %.*s\n", fc, min, max,
max 7612 srclib/pcre/pcre.c max, eptr));
max 7619 srclib/pcre/pcre.c if (min == max) continue;
max 7626 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject ||
max 7635 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7656 srclib/pcre/pcre.c if (min == max) continue;
max 7663 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject || fc != *eptr++)
max 7671 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7716 srclib/pcre/pcre.c min = max = GET2(ecode, 1);
max 7723 srclib/pcre/pcre.c max = GET2(ecode, 1);
max 7737 srclib/pcre/pcre.c max = rep_max[c]; /* zero for max => infinity */
max 7738 srclib/pcre/pcre.c if (max == 0) max = INT_MAX;
max 7756 srclib/pcre/pcre.c DPRINTF(("negative matching %c{%d,%d} against subject %.*s\n", fc, min, max,
max 7757 srclib/pcre/pcre.c max, eptr));
max 7784 srclib/pcre/pcre.c if (min == max) continue;
max 7799 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject || fc == d)
max 7811 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject || fc == md->lcc[*eptr++])
max 7829 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7850 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7891 srclib/pcre/pcre.c if (min == max) continue;
max 7905 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject || fc == d)
max 7917 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject || fc == *eptr++)
max 7935 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7955 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 7978 srclib/pcre/pcre.c min = max = GET2(ecode, 1);
max 7986 srclib/pcre/pcre.c max = GET2(ecode, 1);
max 8000 srclib/pcre/pcre.c max = rep_max[c]; /* zero for max => infinity */
max 8001 srclib/pcre/pcre.c if (max == 0) max = INT_MAX;
max 8222 srclib/pcre/pcre.c if (min == max) continue;
max 8237 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject) RRETURN(MATCH_NOMATCH);
max 8254 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject) RRETURN(MATCH_NOMATCH);
max 8283 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject) RRETURN(MATCH_NOMATCH);
max 8338 srclib/pcre/pcre.c if (fi >= max || eptr >= md->end_subject) RRETURN(MATCH_NOMATCH);
max 8392 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8419 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8476 srclib/pcre/pcre.c if (max < INT_MAX)
max 8480 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8489 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8503 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8512 srclib/pcre/pcre.c c = max - min;
max 8522 srclib/pcre/pcre.c c = max - min;
max 8528 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8539 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8550 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8561 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8572 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8583 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8617 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8627 srclib/pcre/pcre.c c = max - min;
max 8633 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8642 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8651 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8660 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8669 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 8678 srclib/pcre/pcre.c for (i = min; i < max; i++)
max 1543 srclib/pcre/pcretest.c int max = -1;
max 1561 srclib/pcre/pcretest.c mid = (mid == max - 1)? max : (max > 0)? (min + max)/2 : mid*2;
max 1572 srclib/pcre/pcretest.c max = mid;
max 355 srclib/pcre/printint.c int i, min, max;
max 449 srclib/pcre/printint.c max = GET2(ccode,3);
max 450 srclib/pcre/printint.c if (max == 0) fprintf(f, "{%d,}", min);
max 451 srclib/pcre/printint.c else fprintf(f, "{%d,%d}", min, max);
max 185 support/htcacheclean.c max /= KBYTE;
max 186 support/htcacheclean.c if (max >= KBYTE) {
max 188 support/htcacheclean.c max /= KBYTE;
max 208 support/htcacheclean.c (int)(max), mtype);
max 612 support/htcacheclean.c if (sum <= max) {
max 613 support/htcacheclean.c printstats(total, sum, max, etotal, entries);
max 630 support/htcacheclean.c if (sum <= max) {
max 632 support/htcacheclean.c printstats(total, sum, max, etotal, entries);
max 654 support/htcacheclean.c if (sum <= max) {
max 656 support/htcacheclean.c printstats(total, sum, max, etotal, entries);
max 673 support/htcacheclean.c while (sum > max && !interrupted && !APR_RING_EMPTY(&root, _entry, link)) {
max 692 support/htcacheclean.c printstats(total, sum, max, etotal, entries);
max 751 support/htcacheclean.c apr_off_t max;
max 767 support/htcacheclean.c max = 0;
max 868 support/htcacheclean.c rv = apr_strtoff(&max, arg, &end, 10);
max 871 support/htcacheclean.c max *= KBYTE;
max 874 support/htcacheclean.c max *= MBYTE;
max 877 support/htcacheclean.c max *= GBYTE;
max 917 support/htcacheclean.c if (!proxypath || max <= 0) {
max 990 support/htcacheclean.c purge(path, instance, max);
max 226 test/zb.c maxcon = max(maxcon, s.ctime);
max 227 test/zb.c maxtot = max(maxtot, s.time);