/php-src/ext/standard/tests/file/ |
H A D | fscanf_variation8.phpt | 22 -0x80000001, // float value, beyond max negative int 23 0x800000001, // float value, beyond max positive int 24 020000000001, // float value, beyond max positive int 25 -020000000001, // float value, beyond max negative int
|
/php-src/ext/standard/tests/strings/ |
H A D | str_split_variation6.phpt | 20 2147483647, //max positive integer number
|
H A D | chunk_split_variation5.phpt | 27 PHP_INT_MAX, //max positive integer number
|
H A D | chunk_split_variation8.phpt | 33 PHP_INT_MAX, // max positive integer number
|
/php-src/ext/standard/tests/general_functions/ |
H A D | gettype_settype_variation1.phpt | 107 -2147483648, // max -ne int value 112 0xF674593039, // a hex value > than max int 116 02224242434343152, // an octal value > than max int
|
H A D | gettype_settype_variation8.phpt | 107 -2147483648, // max -ne int value 112 0xF674593039, // a hex value > than max int 116 02224242434343152, // an octal value > than max int
|
H A D | gettype_settype_variation6.phpt | 107 -2147483648, // max -ne int value 112 0xF674593039, // a hex value > than max int 116 02224242434343152, // an octal value > than max int
|
H A D | gettype_settype_variation5.phpt | 96 -2147483648, // max -ne int value 101 0xF674593039, // a hex value > than max int 105 02224242434343152, // an octal value > than max int
|
H A D | gettype_settype_variation7.phpt | 107 -2147483648, // max -ne int value 112 0xF674593039, // a hex value > than max int 116 02224242434343152, // an octal value > than max int
|
H A D | gettype_settype_variation2.phpt | 111 -2147483648, // max -ne int value 116 0xF674593039, // a hex value > than max int 120 02224242434343152, // an octal value > than max int
|
H A D | gettype_settype_variation3.phpt | 105 -2147483648, // max -ne int value 110 0xF674593039, // a hex value > than max int 114 02224242434343152, // an octal value > than max int
|
/php-src/Zend/Optimizer/ |
H A D | zend_dump.c | 168 } else if (r->max == ZEND_LONG_MAX) { in zend_dump_range() 171 fprintf(stderr, ZEND_LONG_FMT "]", r->max); in zend_dump_range() 430 if (r->range.max > 0) { in zend_dump_range_constraint() 431 fprintf(stderr, " + " ZEND_LONG_FMT, r->range.max); in zend_dump_range_constraint() 432 } else if (r->range.max < 0) { in zend_dump_range_constraint() 433 fprintf(stderr, " - " ZEND_LONG_FMT, -r->range.max); in zend_dump_range_constraint() 437 fprintf(stderr, ZEND_LONG_FMT "]", r->range.max); in zend_dump_range_constraint()
|
/php-src/Zend/tests/type_declarations/ |
H A D | typed_properties_097.phpt | 2 Incrementing/decrementing past max/min value (additional cases)
|
/php-src/sapi/cli/tests/ |
H A D | upload_2G.phpt | 23 $free_ram = max($free_ram, $m[1]/1024/1024);
|
/php-src/ext/phar/phar/ |
H A D | clicommand.inc | 235 $p = max(79 - $l, 40); // minimum length for paragraph 263 $ls = max($ls, strlen($opt)); 311 $l = max($l, strlen($name));
|
/php-src/ext/zlib/ |
H A D | zlib.c | 420 static inline int php_zlib_inflate_rounds(z_stream *Z, size_t max, char **buf, size_t *len) in php_zlib_inflate_rounds() argument 428 buffer.size = (max && (max < Z->avail_in)) ? max : Z->avail_in; in php_zlib_inflate_rounds() 431 …if ((max && (max <= buffer.used)) || !(buffer.aptr = erealloc_recoverable(buffer.data, buffer.size… in php_zlib_inflate_rounds()
|
/php-src/ext/dom/tests/ |
H A D | DOMXPath_quote.phpt | 38 $bytesUntilQuote = \max($bytesUntilSingleQuote, $bytesUntilDoubleQuote);
|
/php-src/ext/iconv/tests/ |
H A D | iconv_mime_encode.phpt | 26 $max = max(array_map("strlen", explode("\n", $result))); 28 var_dump(($max <= $line_len));
|
/php-src/ext/ffi/ |
H A D | ffi.g | 321 {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);}
|
/php-src/main/ |
H A D | rfc1867.c | 582 size_t len, max; in multipart_buffer_read() local 592 max = bound - self->buf_begin; in multipart_buffer_read() 597 max = self->bytes_in_buffer; in multipart_buffer_read() 601 len = max < bytes-1 ? max : bytes-1; in multipart_buffer_read()
|
/php-src/sapi/fpm/ |
H A D | www.conf.in | 170 ; max listen queue - the maximum number of requests in the queue 176 ; max active processes - the maximum number of active processes since FPM 178 ; max children reached - number of times, the process limit has been reached, 189 ; max listen queue: 1 194 ; max active processes: 12 195 ; max children reached: 0 228 ; last request memory - the max amount of memory the last request consumed 406 ; Set max core size rlimit.
|
H A D | php-fpm.conf.in | 87 ; process.max = 128 105 ; Set max core size rlimit for the master process.
|
/php-src/ext/gd/libgd/ |
H A D | gd_interpolation.c | 927 uchar_clamp(double clr, unsigned char max) { in uchar_clamp() argument 941 if (result > max) { in uchar_clamp() 942 result = (clr < 0) ? 0 : max; in uchar_clamp() 2440 gdPointF extent[4], min, max, point; in gdTransformAffineBoundingBox() local 2459 max=extent[0]; in gdTransformAffineBoundingBox() 2466 if (max.x < extent[i].x) in gdTransformAffineBoundingBox() 2467 max.x=extent[i].x; in gdTransformAffineBoundingBox() 2468 if (max.y < extent[i].y) in gdTransformAffineBoundingBox() 2469 max.y=extent[i].y; in gdTransformAffineBoundingBox() 2473 bbox->width = (int) floor(max.x - min.x) - 1; in gdTransformAffineBoundingBox() [all …]
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_compile.c | 934 int max, min; in show_parsed() local 1000 max = *pptr++; in show_parsed() 1001 if (max != REPEAT_UNLIMITED) in show_parsed() 1009 max = *pptr++; in show_parsed() 1018 max = *pptr++; in show_parsed() 1482 max = min; in read_repeat_counts() 1493 if (max < min) in read_repeat_counts() 9475 uint32_t min, max; in get_branchlength() local 9776 max = 1; in get_branchlength() 9786 max = pptr[2]; in get_branchlength() [all …]
|
/php-src/ext/posix/ |
H A D | posix.c | 1195 zend_long res, cur, max; in PHP_FUNCTION() local 1200 Z_PARAM_LONG(max) in PHP_FUNCTION() 1204 rl.rlim_max = max; in PHP_FUNCTION()
|