Home
last modified time | relevance | path

Searched refs:max (Results 101 – 125 of 254) sorted by relevance

1234567891011

/PHP-7.3/Zend/
H A Dzend_stack.h24 int size, top, max; member
/PHP-7.3/ext/standard/tests/strings/
H A Dsprintf_variation9.phpt17 -0x80000001, // float value, beyond max negative int
18 0x800000001, // float value, beyond max positive int
19 020000000001, // float value, beyond max positive int
20 -020000000001, // float value, beyond max negative int
H A Dstr_split_variation7_64bit.phpt34 2147483647, //max positive integer number
35 2147483648, //max positive integer+1
H A Dsprintf_variation4.phpt22 0x800000001, // float value, beyond max positive int
23 020000000001, // float value, beyond max positive int
H A Dsprintf_variation4_64bit.phpt18 0x800000001, // float value, beyond max positive int
19 020000000001, // float value, beyond max positive int
H A Dstr_split_variation6.phpt32 2147483647, //max positive integer number
33 2147483648, //max positive integer+1
H A Dstr_split_variation6_64bit.phpt32 2147483647, //max positive integer number
33 2147483648, //max positive integer+1
H A Dstr_split_variation7.phpt34 2147483647, //max positive integer number
35 2147483648, //max positive integer+1
/PHP-7.3/ext/odbc/tests/
H A Dbug69975.phpt2 Bug #69975 (PHP segfaults when accessing nvarchar(max) defined columns)
/PHP-7.3/sapi/fpm/tests/
H A Dstatus.inc29 'max listen queue' => '\d+',
34 'max active processes' => '\d+',
35 'max children reached' => '\d+',
/PHP-7.3/ext/standard/
H A Dvar_unserializer.c387 #define UNSERIALIZE_PARAMETER zval *rval, const unsigned char **p, const unsigned char *max, php_un…
388 #define UNSERIALIZE_PASSTHRU rval, p, max, var_hash
400 if (!php_var_unserialize_internal(&key, p, max, NULL, 1)) { in process_nested_data()
504 if (!php_var_unserialize_internal(data, p, max, var_hash, 0)) { in process_nested_data()
523 if (*p >= max || **p != '}') { in finish_nested_data()
539 if (datalen < 0 || (max - (*p)) <= datalen) { in object_custom()
566 if( *p >= max - 2) { in object_common1()
662 limit = max; in php_var_unserialize_internal()
1198 maxlen = max - YYCURSOR; in php_var_unserialize_internal()
1338 maxlen = max - YYCURSOR; in php_var_unserialize_internal()
[all …]
H A Dvar_unserializer.re391 #define UNSERIALIZE_PARAMETER zval *rval, const unsigned char **p, const unsigned char *max, php_un…
392 #define UNSERIALIZE_PASSTHRU rval, p, max, var_hash
404 if (!php_var_unserialize_internal(&key, p, max, NULL, 1)) {
508 if (!php_var_unserialize_internal(data, p, max, var_hash, 0)) {
527 if (*p >= max || **p != '}') {
543 if (datalen < 0 || (max - (*p)) <= datalen) {
570 if( *p >= max - 2) {
666 limit = max;
805 maxlen = max - YYCURSOR;
845 maxlen = max - YYCURSOR;
[all …]
/PHP-7.3/ext/standard/tests/file/
H A Dbug37158.phpt2 Bug #37158 (if userspace stream is present, fread() reads in 8192 max, otherwise it works)
/PHP-7.3/ext/oci8/tests/
H A Dcoll_003.phpt17 var_dump($coll1->max());
H A Dcoll_007.phpt17 var_dump($coll1->max());
H A Dbind_sqltafc.phpt38 $c3 = "AAAAAAAAAA"; // max length allowed in column
39 $c4 = "BBBBBBBBBB"; // max length allowed in column
/PHP-7.3/ext/zip/lib/
H A Dzip_open.c432 zip_uint64_t min, max, j; in _zip_checkcons() local
437 max = cd->entry[0].orig->offset; in _zip_checkcons()
441 min = max = 0; in _zip_checkcons()
453 if (j > max) in _zip_checkcons()
454 max = j; in _zip_checkcons()
455 if (max > (zip_uint64_t)cd->offset) { in _zip_checkcons()
483 return (max-min) < ZIP_INT64_MAX ? (zip_int64_t)(max-min) : ZIP_INT64_MAX; in _zip_checkcons()
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Dascii.c52 BC_B_O(name, max, 2, args, 1, opts); in init()
H A Dregcomp.c5418 return a->min == b->min && a->max == b->max; in is_equal_mml()
5425 l->max = max; in set_mml()
5438 to->max = from->max; in copy_mml()
5445 to->max = distance_add(to->max, from->max); in add_mml()
5452 if (to->max < from->max) to->max = from->max; in alt_merge_mml()
5967 int max, min; in optimize_nodes() local
5978 max = slen; in optimize_nodes()
6012 int min, max; in optimize_nodes() local
6106 if (max < tmax) max = tmax; in optimize_nodes()
6162 max = (xo.len.max > 0 ? INFINITE_LEN : 0); in optimize_nodes()
[all …]
/PHP-7.3/ext/standard/tests/general_functions/
H A Dfloatval_variation1.phpt19 "-2147483648" => -2147483648, // max negative integer value
20 "2147483647" => 2147483648, // max positive integer value
/PHP-7.3/tests/lang/operators/
H A Doperator_gt_variation.phpt2 Test > operator : max int 32bit range
H A Doperator_lt_variation.phpt2 Test < operator : max int 32bit range
H A Doperator_gt_variation_64bit.phpt2 Test > operator : max int 64bit range
H A Doperator_lt_variation_64bit.phpt2 Test < operator : max int 64bit range
/PHP-7.3/ext/standard/tests/math/
H A Dmt_rand_variation2.phpt2 Test mt_rand() function : usage variations - different data types as $max argument
7 /* Prototype : int mt_rand ([ int $min , int $max ] )

Completed in 52 milliseconds

1234567891011