Home
last modified time | relevance | path

Searched refs:max (Results 176 – 200 of 245) sorted by relevance

12345678910

/PHP-7.4/ext/standard/tests/general_functions/
H A Dgettype_settype_variation6.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation8.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation7.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation5.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation2.phpt122 -2147483648, // max -ne int value
127 0xF674593039, // a hex value > than max int
131 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation3.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
/PHP-7.4/ext/iconv/tests/
H A Diconv_mime_encode.phpt26 $max = max(array_map("strlen", explode("\n", $result)));
28 var_dump(($max <= $line_len));
/PHP-7.4/ext/standard/tests/file/
H A Dfscanf_variation8.phpt27 -0x80000001, // float value, beyond max negative int
28 0x800000001, // float value, beyond max positive int
29 020000000001, // float value, beyond max positive int
30 -020000000001, // float value, beyond max negative int
/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()
/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 Dphp_ffi.h221 …, const char *name, size_t name_len, zend_ffi_val *val, int64_t *min, int64_t *max, int64_t *last);
/PHP-7.4/ext/zlib/
H A Dzlib.c373 static inline int php_zlib_inflate_rounds(z_stream *Z, size_t max, char **buf, size_t *len) in php_zlib_inflate_rounds() argument
381 buffer.size = (max && (max < Z->avail_in)) ? max : Z->avail_in; in php_zlib_inflate_rounds()
384 …if ((max && (max <= buffer.used)) || !(buffer.aptr = erealloc_recoverable(buffer.data, buffer.size… in php_zlib_inflate_rounds()
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_dump.c166 fprintf(stderr, ZEND_LONG_FMT "]", r->max); in zend_dump_range()
400 if (r->range.max > 0) { in zend_dump_range_constraint()
401 fprintf(stderr, " + " ZEND_LONG_FMT, r->range.max); in zend_dump_range_constraint()
402 } else if (r->range.max < 0) { in zend_dump_range_constraint()
403 fprintf(stderr, " - " ZEND_LONG_FMT, -r->range.max); in zend_dump_range_constraint()
407 fprintf(stderr, ZEND_LONG_FMT "]", r->range.max); in zend_dump_range_constraint()
H A Dzend_inference.h98 return ssa->var_info[ssa->ops[opline - op_array->opcodes].opN##_use].range.max; \
259 …ray, zend_ssa *ssa, int var, zend_bool underflow, zend_long min, zend_long max, zend_bool overflow…
H A Dzend_ssa.h27 zend_long max; member
/PHP-7.4/sapi/fpm/
H A Dphp-fpm.conf.in87 ; process.max = 128
105 ; Set max core size rlimit for the master process.
/PHP-7.4/ext/oci8/tests/
H A Dreflection2.phpt237 Method [ <internal%s> public method max ] {
/PHP-7.4/ext/standard/tests/mail/
H A Dbug80751.phpt25 $repeat_count = 20; // we will repeat a max of 20 times
/PHP-7.4/ext/standard/tests/strings/
H A Dchunk_split_variation8.phpt39 PHP_INT_MAX, // max positive integer number
/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/oci8/
H A Doci8_collection.c263 int php_oci_collection_max(php_oci_collection *collection, zend_long *max) in php_oci_collection_max() argument
267 PHP_OCI_CALL_RETURN(*max, OCICollMax, (connection->env, collection->collection)); in php_oci_collection_max()
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_format.phpt15 function create_table($link, $column, $min, $max, $engine, $offset) {
35 $col1 = mt_rand($min, $max);
/PHP-7.4/ext/gd/libgd/
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/gmp/
H A Dgmp.c116 ZEND_ARG_INFO(0, max)
596 const unsigned char *p, *max; in gmp_unserialize() local
610 max = buf + buf_len; in gmp_unserialize()
613 if (!php_var_unserialize(zv, &p, max, &unserialize_data) in gmp_unserialize()
622 if (!php_var_unserialize(zv, &p, max, &unserialize_data) in gmp_unserialize()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_compile.c923 int max, min; in show_parsed() local
989 max = *pptr++; in show_parsed()
990 if (max != REPEAT_UNLIMITED) in show_parsed()
991 fprintf(stderr, "META {%d,%d}", min, max); in show_parsed()
998 max = *pptr++; in show_parsed()
999 if (max != REPEAT_UNLIMITED) in show_parsed()
1007 max = *pptr++; in show_parsed()
1008 if (max != REPEAT_UNLIMITED) in show_parsed()
1417 max = min; in read_repeat_counts()
1428 if (max < min) in read_repeat_counts()
[all …]

Completed in 87 milliseconds

12345678910