Searched refs:min (Results 1 - 14 of 14) sorted by relevance

/httpd/docs/manual/style/scripts/
H A DMINIFY3 (echo '// see prettify.js for copyright, license and expanded version'; python -mrjsmin <prettify.js) >prettify.min.js
H A Dprettify.js340 ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
343 ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
1173 var end = Math.min(spanEnd, decEnd);
H A Dprettify.min.js16 ranges.push([start,end]);if(!(end<65||start>122)){if(!(end<65||start>90)){ranges.push([Math.max(65,start)|32,Math.min(end,90)|32]);}
17 if(!(end<97||start>122)){ranges.push([Math.max(97,start)&~32,Math.min(end,122)&~32]);}}}}
102 var spanStart=spans[spanIndex];var spanEnd=spans[spanIndex+2]||sourceLength;var decEnd=decorations[decorationIndex+2]||sourceLength;var end=Math.min(spanEnd,decEnd);var textNode=spans[spanIndex+1];var styledText;if(textNode.nodeType!==1&&(styledText=source.substring(sourceIndex,end))){if(isIE8OrEarlier){styledText=styledText.replace(newlineRe,'\r');}
/httpd/modules/mappers/
H A Dmod_imagemap.c135 double max[2], min[2]; local
138 min[0] = coords[1][X];
142 min[0] = coords[0][X];
147 min[1] = coords[1][Y];
151 min[1] = coords[0][Y];
154 return ((point[X] >= min[0] && point[X] <= max[0]) &&
155 (point[Y] >= min[1] && point[Y] <= max[1]));
/httpd/modules/aaa/
H A Dmod_auth_digest.c613 long size, min; local
631 min = sizeof(*client_list) + sizeof(client_entry*) + sizeof(client_entry);
632 if (size < min) {
634 "%ld < %ld", size, min);
/httpd/include/
H A Dhttpd.h1375 /* 5 min loadavg */
1377 /* 15 min loadavg */
2293 * @param min low end of range
2297 AP_DECLARE(apr_uint32_t) ap_random_pick(apr_uint32_t min, apr_uint32_t max);
/httpd/modules/proxy/
H A Dmod_proxy.h359 int min; /* Desired minimum number of available connections */ member in struct:__anon284
H A Dproxy_util.c1870 /* Set min to be lower then smax */
1871 if (worker->s->min > worker->s->smax) {
1872 worker->s->min = worker->s->smax;
1877 worker->s->min = worker->s->smax = worker->s->hmax = 0;
1913 worker->s->min, worker->s->smax,
1923 "initialized pool in child %" APR_PID_T_FMT " for (%s) min=%d max=%d smax=%d",
1924 getpid(), worker->s->hostname, worker->s->min,
H A Dmod_proxy_balancer.c1300 ap_rprintf(r, " <httpd:min>%d</httpd:min>\n",
1301 worker->s->min);
H A Dmod_proxy.c95 else if (!strcasecmp(key, "min")) {
101 worker->s->min = ival;
/httpd/modules/ssl/
H A Dssl_engine_init.c74 const unsigned int min; /* ...of length >= this. */ member in struct:dhparam
117 if (keylen >= dhparams[n].min)
/httpd/modules/lua/
H A Dmod_lua.c1612 const char *min,
1645 vmin = min ? atoi(min) : 1;
1609 register_lua_scope(cmd_parms *cmd, void *_cfg, const char *scope, const char *min, const char *max) argument
/httpd/server/mpm/winnt/
H A Dchild.c1295 dwRet = WaitForMultipleObjects(min(threads_created - watch_thread,
/httpd/server/
H A Dcore.c3790 if (strncmp(arg, "min=", 4) == 0) {
3797 return "HttpProtocol 'min' must be one of '0.9' and '1.0'";
3809 return "HttpProtocol accepts 'min=0.9', 'min=1.0', 'liberal', "
4423 "'min=0.9' (default) or 'min=1.0' to allow/deny HTTP/0.9; "
5136 AP_DECLARE(apr_uint32_t) ap_random_pick(apr_uint32_t min, apr_uint32_t max)
5145 RAND_RANGE(num16, min, max, APR_UINT16_MAX);
5152 RAND_RANGE(number, min, max, APR_UINT32_MAX);

Completed in 2048 milliseconds