Home
last modified time | relevance | path

Searched refs:max (Results 201 – 225 of 271) sorted by relevance

1234567891011

/PHP-8.3/ext/standard/tests/general_functions/
H A Dgettype_settype_variation5.phpt96 -2147483648, // max -ne int value
101 0xF674593039, // a hex value > than max int
105 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation7.phpt107 -2147483648, // max -ne int value
112 0xF674593039, // a hex value > than max int
116 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation2.phpt111 -2147483648, // max -ne int value
116 0xF674593039, // a hex value > than max int
120 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation3.phpt105 -2147483648, // max -ne int value
110 0xF674593039, // a hex value > than max int
114 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation4.phpt115 -2147483648, // max -ne int value
120 0xF674593039, // a hex value > than max int
124 02224242434343152, // an octal value > than max int
/PHP-8.3/ext/standard/tests/strings/
H A Dchunk_split_variation8.phpt33 PHP_INT_MAX, // max positive integer number
/PHP-8.3/ext/standard/tests/mail/
H A Dbug80751.phpt29 $repeat_count = 20; // we will repeat a max of 20 times
/PHP-8.3/ext/posix/
H A Dposix.c1195 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()
/PHP-8.3/ext/gmp/
H A Dgmp.stub.php160 function gmp_random_range(GMP|int|string $min, GMP|int|string $max): GMP {} argument
H A Dgmp.c475 const unsigned char *p, *max; in gmp_unserialize() local
487 max = buf + buf_len; in gmp_unserialize()
490 if (!php_var_unserialize(zv, &p, max, &unserialize_data) in gmp_unserialize()
499 if (!php_var_unserialize(zv, &p, max, &unserialize_data) in gmp_unserialize()
H A Dgmp_arginfo.h142 ZEND_ARG_OBJ_TYPE_MASK(0, max, GMP, MAY_BE_LONG|MAY_BE_STRING, NULL)
/PHP-8.3/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-8.3/ext/oci8/
H A Doci8_collection.c257 int php_oci_collection_max(php_oci_collection *collection, zend_long *max) in php_oci_collection_max() argument
261 PHP_OCI_CALL_RETURN(*max, OCICollMax, (connection->env, collection->collection)); in php_oci_collection_max()
/PHP-8.3/ext/gd/libgd/
H A Dgd_interpolation.c2420 gdPointF extent[4], min, max, point; in gdTransformAffineBoundingBox() local
2439 max=extent[0]; in gdTransformAffineBoundingBox()
2446 if (max.x < extent[i].x) in gdTransformAffineBoundingBox()
2447 max.x=extent[i].x; in gdTransformAffineBoundingBox()
2448 if (max.y < extent[i].y) in gdTransformAffineBoundingBox()
2449 max.y=extent[i].y; in gdTransformAffineBoundingBox()
2453 bbox->width = (int) floor(max.x - min.x) - 1; in gdTransformAffineBoundingBox()
2454 bbox->height = (int) floor(max.y - min.y); in gdTransformAffineBoundingBox()
/PHP-8.3/ext/ffi/
H A Dphp_ffi.h220 …, const char *name, size_t name_len, zend_ffi_val *val, int64_t *min, int64_t *max, int64_t *last);
/PHP-8.3/Zend/Optimizer/
H A Dzend_ssa.h27 zend_long max; member
H A Dzend_inference.h83 return ssa->var_info[ssa_op->opN##_use].range.max; \
/PHP-8.3/ext/standard/
H A Dstring.c3323 …size_t len1, const char *txt2, size_t len2, size_t *pos1, size_t *pos2, size_t *max, size_t *count) argument
3330 *max = 0;
3335 if (l > *max) {
3336 *max = l;
3350 size_t pos1 = 0, pos2 = 0, max, count; local
3352 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max, &count);
3353 if ((sum = max)) {
3358 if ((pos1 + max < len1) && (pos2 + max < len2)) {
3359 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
3360 txt2 + pos2 + max, len2 - pos2 - max);
H A Darray.c1292 PHP_FUNCTION(max) in PHP_FUNCTION() argument
1317 zval *max; in PHP_FUNCTION() local
1320 max = &args[0]; in PHP_FUNCTION()
1324 if (Z_TYPE_P(max) == IS_LONG) { in PHP_FUNCTION()
1325 max_lval = Z_LVAL_P(max); in PHP_FUNCTION()
1331 max = &args[i]; in PHP_FUNCTION()
1344 max_dval = Z_DVAL_P(max); in PHP_FUNCTION()
1351 max = &args[i]; in PHP_FUNCTION()
1357 max = &args[i]; in PHP_FUNCTION()
1367 max = &args[i]; in PHP_FUNCTION()
[all …]
/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_compile.c928 int max, min; in show_parsed() local
994 max = *pptr++; in show_parsed()
995 if (max != REPEAT_UNLIMITED) in show_parsed()
996 fprintf(stderr, "META {%d,%d}", min, max); in show_parsed()
1003 max = *pptr++; in show_parsed()
1004 if (max != REPEAT_UNLIMITED) in show_parsed()
1012 max = *pptr++; in show_parsed()
1013 if (max != REPEAT_UNLIMITED) in show_parsed()
1441 max = min; in read_repeat_counts()
1450 if (max < min) in read_repeat_counts()
[all …]
/PHP-8.3/ext/pcre/pcre2lib/sljit/
H A DsljitNativeX86_common.c1515 sljit_sw max; in emit_clz_ctz() local
1545 max = is_clz ? (32 + 31) : 32; in emit_clz_ctz()
1549 EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_IMM, max); in emit_clz_ctz()
1560 FAIL_IF(sljit_emit_cmov_generic(compiler, SLJIT_EQUAL, dst_r, SLJIT_IMM, max)); in emit_clz_ctz()
1569 max = compiler->mode32 ? (32 + 31) : (64 + 63); in emit_clz_ctz()
1571 max = compiler->mode32 ? 32 : 64; in emit_clz_ctz()
1574 EMIT_MOV(compiler, TMP_REG2, 0, SLJIT_IMM, max); in emit_clz_ctz()
1582 FAIL_IF(sljit_emit_cmov_generic(compiler, SLJIT_EQUAL, dst_r, SLJIT_IMM, max)); in emit_clz_ctz()
1585 inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, max >> 1, dst_r, 0); in emit_clz_ctz()
/PHP-8.3/win32/build/
H A Dconfutils.js1847 var max = new Array(l);
1868 max[j] = tmax;
1870 max[j] = header[j].length;
1880 k += max[i] + 3;
1892 for (var i = 0; i < (max[j] - header[j].length); i++){
1907 for (var k = 0; k < (max[j] - line[j].length); k++){
/PHP-8.3/ext/mbstring/tests/
H A Dmb_encode_mimeheader_basic4.phpt56 // take a vastly larger number of bytes; make sure we don't overrun max line length
75 // without overrunning max line length
/PHP-8.3/
H A Dphp.ini-production417 ; https://php.net/max-execution-time
428 ; https://php.net/max-input-time
712 ; https://php.net/post-max-size
864 ; https://php.net/upload-max-filesize
1148 ; https://php.net/odbc.max-persistent
1152 ; https://php.net/odbc.max-links
1169 ; https://php.net/mysqli.max-persistent
1185 ; https://php.net/mysqli.max-links
1264 ; https://php.net/oci8.max-persistent
1326 ; https://php.net/pgsql.max-persistent
[all …]
H A Dphp.ini-development415 ; https://php.net/max-execution-time
426 ; https://php.net/max-input-time
710 ; https://php.net/post-max-size
862 ; https://php.net/upload-max-filesize
1146 ; https://php.net/odbc.max-persistent
1150 ; https://php.net/odbc.max-links
1167 ; https://php.net/mysqli.max-persistent
1183 ; https://php.net/mysqli.max-links
1262 ; https://php.net/oci8.max-persistent
1324 ; https://php.net/pgsql.max-persistent
[all …]

Completed in 197 milliseconds

1234567891011