Home
last modified time | relevance | path

Searched refs:max (Results 1 – 25 of 245) sorted by last modified time

12345678910

/PHP-7.4/
H A DNEWS1393 . Fixed bug #78788 (./configure generates invalid php_version.h). (max)
H A D.gdbinit619 usage: print_zstr <ptr> [max length]
H A Drun-tests.php3512 $max = 5;
3522 } while (!file_exists($chk) && --$max > 0);
3524 if ($max) {
/PHP-7.4/ext/standard/
H A Darray.c1306 PHP_FUNCTION(max) in PHP_FUNCTION() argument
1332 zval *max, result; in PHP_FUNCTION() local
1335 max = &args[0]; in PHP_FUNCTION()
1338 is_smaller_or_equal_function(&result, &args[i], max); in PHP_FUNCTION()
1340 max = &args[i]; in PHP_FUNCTION()
1344 ZVAL_COPY(return_value, max); in PHP_FUNCTION()
H A Dstring.c3603 …size_t len1, const char *txt2, size_t len2, size_t *pos1, size_t *pos2, size_t *max, size_t *count) argument
3610 *max = 0;
3615 if (l > *max) {
3616 *max = l;
3631 size_t pos1 = 0, pos2 = 0, max, count; local
3633 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max, &count);
3634 if ((sum = max)) {
3639 if ((pos1 + max < len1) && (pos2 + max < len2)) {
3640 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
3641 txt2 + pos2 + max, len2 - pos2 - max);
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_children.c372 int max; in fpm_children_make() local
377 max = wp->config->pm_start_servers; in fpm_children_make()
379 max = wp->running_children + nb_to_spawn; in fpm_children_make()
383 max = 0; /* do not create any child at startup */ in fpm_children_make()
385 max = wp->running_children + nb_to_spawn; in fpm_children_make()
388 max = wp->config->pm_max_children; in fpm_children_make()
398 …while (fpm_pctl_can_spawn_children() && wp->running_children < max && (fpm_global_config.process_m… in fpm_children_make()
443 if (wp->running_children < max) { in fpm_children_make()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c1605 max -= min; in get_class_iterator_size()
1607 max = 2; in get_class_iterator_size()
1608 return max; in get_class_iterator_size()
1649 max = 0; in detect_repeat()
1662 max++; in detect_repeat()
7377 if (c > max) max = c; in compile_xclass_matchingpath()
7389 if (c > max) max = c; in compile_xclass_matchingpath()
7404 if (*other_cases > max) max = *other_cases; in compile_xclass_matchingpath()
9147 max = 0; in compile_ref_iterator_matchingpath()
9153 max = 0; in compile_ref_iterator_matchingpath()
[all …]
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc398 * @param int $max
402 public function runTill(string $needle, $max = 10)
406 for ($i = 0; $i < $max; $i++) {
1017 // Socket max path length is 108 on Linux and 104 on BSD,
H A Dstatus.inc29 'max listen queue' => '\d+',
34 'max active processes' => '\d+',
35 'max children reached' => '\d+',
/PHP-7.4/ext/gd/libgd/
H A Dgd.c168 static int gdAlphaOverlayColor(int src, int dst, int max);
3003 static int gdAlphaOverlayColor (int src, int dst, int max ) in gdAlphaOverlayColor() argument
3015 if( dst > max ) { in gdAlphaOverlayColor()
3017 return dst + (src << 1) - (dst * src / max) - max; in gdAlphaOverlayColor()
3020 return dst * src / max; in gdAlphaOverlayColor()
H A Dgd_interpolation.c2411 gdPointF extent[4], min, max, point; in gdTransformAffineBoundingBox() local
2430 max=extent[0]; in gdTransformAffineBoundingBox()
2437 if (max.x < extent[i].x) in gdTransformAffineBoundingBox()
2438 max.x=extent[i].x; in gdTransformAffineBoundingBox()
2439 if (max.y < extent[i].y) in gdTransformAffineBoundingBox()
2440 max.y=extent[i].y; in gdTransformAffineBoundingBox()
2444 bbox->width = (int) floor(max.x - min.x) - 1; in gdTransformAffineBoundingBox()
2445 bbox->height = (int) floor(max.y - min.y); in gdTransformAffineBoundingBox()
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch380 mset[i].max += ALLOC_INCR;
382 - realloc(mset[i].me, sizeof(*mp) * mset[i].max))) ==
383 + erealloc(mset[i].me, sizeof(*mp) * mset[i].max))) ==
385 file_oomem(ms, sizeof(*mp) * mset[i].max);
/PHP-7.4/ext/date/lib/
H A Dparse_date.re1824 /*!max:re2c */
/PHP-7.4/ext/ffi/
H A Dffi.g321 {int64_t min = 0, max = 0, last = -1;}
322 enumerator(enum_dcl, &min, &max, &last)
324 enumerator(enum_dcl, &min, &max, &last)
329 enumerator(zend_ffi_dcl *enum_dcl, int64_t *min, int64_t *max, int64_t *last):
337 {zend_ffi_add_enum_val(enum_dcl, name, name_len, &val, min, max, last);}
H A Dffi_parser.c271 static int parse_enumerator(int sym, zend_ffi_dcl *enum_dcl, int64_t *min, int64_t *max, int64_t *l…
2516 int64_t min = 0, max = 0, last = -1; in parse_enumerator_list() local
2517 sym = parse_enumerator(sym, enum_dcl, &min, &max, &last); in parse_enumerator_list()
2551 sym = parse_enumerator(sym, enum_dcl, &min, &max, &last); in parse_enumerator_list()
2559 static int parse_enumerator(int sym, zend_ffi_dcl *enum_dcl, int64_t *min, int64_t *max, int64_t *l… in parse_enumerator() argument
2568 zend_ffi_add_enum_val(enum_dcl, name, name_len, &val, min, max, last); in parse_enumerator()
/PHP-7.4/ext/opcache/Optimizer/
H A Dsccp.c2201 && info->range.min == info->range.max) { in value_from_type_and_range()
H A Dzend_ssa.c119 zend_ssa_phi *phi, int min_var, int max_var, zend_long min, zend_long max, in pi_range() argument
128 constraint->range.max = max; in pi_range()
H A Dzend_inference.c906 tmp->max = MIN(constraint->range.max, tmp->max); in zend_inference_calc_range()
911 …tmp->max = MIN(ssa->var_info[constraint->max_ssa_var].range.max + constraint->range.max, tmp->max); in zend_inference_calc_range()
935 tmp->max = constraint->range.max; in zend_inference_calc_range()
959 tmp->max = MAX(tmp->max, ssa->var_info[p->sources[i]].range.max); in zend_inference_calc_range()
1525 ssa->var_info[var].range.max = max; in zend_inference_init_range()
1543 r->max > var_info->range.max) { in zend_inference_widening_meet()
1548 var_info->range.max == r->max && in zend_inference_widening_meet()
1583 var_info->range.max > r->max) { in zend_inference_narrowing_meet()
1584 r->max = var_info->range.max; in zend_inference_narrowing_meet()
1593 var_info->range.max == r->max && in zend_inference_narrowing_meet()
[all …]
/PHP-7.4/ext/openssl/
H A Dxp_ssl.c1045 static int php_openssl_get_proto_version_flags(int flags, int min, int max) /* {{{ */ in php_openssl_get_proto_version_flags() argument
1052 if (!max) { in php_openssl_get_proto_version_flags()
1053 max = php_openssl_get_max_proto_version_flag(flags); in php_openssl_get_proto_version_flags()
1057 if (ver >= min && ver <= max) { in php_openssl_get_proto_version_flags()
/PHP-7.4/sapi/fpm/fpm/events/
H A Dport.c30 static int fpm_event_port_init(int max);
67 static int fpm_event_port_init(int max) /* {{{ */ in fpm_event_port_init() argument
76 if (max < 1) { in fpm_event_port_init()
81 events = malloc(sizeof(port_event_t) * max); in fpm_event_port_init()
83 zlog(ZLOG_ERROR, "port: Unable to allocate %d events", max); in fpm_event_port_init()
87 nevents = max; in fpm_event_port_init()
/PHP-7.4/ext/posix/
H A Dposix.c1447 zend_long res, cur, max; in PHP_FUNCTION() local
1452 Z_PARAM_LONG(max) in PHP_FUNCTION()
1456 rl.rlim_max = max; in PHP_FUNCTION()
/PHP-7.4/ext/standard/tests/mail/
H A Dbug80751.phpt25 $repeat_count = 20; // we will repeat a max of 20 times
H A Dbug80706.phpt25 $repeat_count = 20; // we will repeat a max of 20 times
/PHP-7.4/Zend/tests/
H A Dsymtable_cache_recursive_dtor.phpt7 static $max = 40;
9 if (self::$max-- < 0) return;
/PHP-7.4/main/
H A Drfc1867.c611 size_t len, max; in multipart_buffer_read() local
621 max = bound - self->buf_begin; in multipart_buffer_read()
626 max = self->bytes_in_buffer; in multipart_buffer_read()
630 len = max < bytes-1 ? max : bytes-1; in multipart_buffer_read()

Completed in 208 milliseconds

12345678910