Home
last modified time | relevance | path

Searched refs:limit (Results 101 – 125 of 138) sorted by relevance

123456

/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_stmt_execute.phpt71 $limit = 1;
72 if (!mysqli_stmt_bind_param($stmt, "i", $limit))
/PHP-8.1/ext/standard/
H A Dphp_string.h57 … void php_explode(const zend_string *delim, zend_string *str, zval *return_value, zend_long limit);
H A Durl_scanner_ex.re837 char *start, *end, *limit;
892 limit = ZSTR_VAL(url_state->url_app.s) + ZSTR_LEN(url_state->url_app.s);
895 while (end < limit) {
931 limit = ZSTR_VAL(url_state->form_app.s) + ZSTR_LEN(url_state->form_app.s);
933 while (end < limit) {
H A Dvar_unserializer.re384 #define YYLIMIT limit
474 "The depth limit can be changed using the max_depth unserialize() option "
582 "The depth limit can be changed using the max_depth unserialize() option "
854 const unsigned char *cursor, *limit, *marker, *start;
857 limit = max;
H A Dstring.c1024 …I void php_explode(const zend_string *delim, zend_string *str, zval *return_value, zend_long limit) in php_explode() argument
1043 } while (p2 != NULL && --limit > 1); in php_explode()
1056 …ode_negative_limit(const zend_string *delim, zend_string *str, zval *return_value, zend_long limit) in php_explode_negative_limit() argument
1084 to_return = limit + found; in php_explode_negative_limit()
1100 zend_long limit = ZEND_LONG_MAX; /* No limit */ in PHP_FUNCTION() local
1107 Z_PARAM_LONG(limit) in PHP_FUNCTION()
1118 if (limit >= 0) { in PHP_FUNCTION()
1125 if (limit > 1) { in PHP_FUNCTION()
1126 php_explode(delim, str, return_value, limit); in PHP_FUNCTION()
1127 } else if (limit < 0) { in PHP_FUNCTION()
[all …]
/PHP-8.1/ext/posix/
H A Dposix.c1031 static int posix_addlimit(int limit, const char *name, zval *return_value) { in posix_addlimit() argument
1040 result = getrlimit(limit, &rl); in posix_addlimit()
1064 int limit; member
1138 if (posix_addlimit(l->limit, l->name, return_value) == FAILURE) { in PHP_FUNCTION()
/PHP-8.1/ext/json/
H A Djson_scanner.re25 #define YYLIMIT s->limit
97 s->limit = (php_json_ctype *) str + str_len;
200 if (s->limit < s->cursor) {
/PHP-8.1/Zend/
H A Dzend_builtin_functions_arginfo.h185 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, limit, IS_LONG, 0, "0")
190 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, limit, IS_LONG, 0, "0")
H A Dzend_portability.h354 # define do_alloca_ex(size, limit, use_heap) \ argument
355 ((use_heap = (UNEXPECTED((size) > (limit)))) ? emalloc(size) : alloca(size))
/PHP-8.1/win32/
H A Dglob.c440 size_t limit = 0; local
498 if ((err = glob1(patbuf, patbuf+MAXPATHLEN-1, pglob, &limit)) != 0)
511 return(globextend(pattern, pglob, &limit));
/PHP-8.1/ext/phar/tests/
H A Dphar_metadata_write3.phpt80 Warning: Phar::getMetadata(): Maximum depth of 1 exceeded. The depth limit can be changed using the…
/PHP-8.1/ext/spl/
H A Dspl_iterators.stub.php183 public function __construct(Iterator $iterator, int $offset = 0, int $limit = -1) {} argument
H A Dspl_heap.c318 const int limit = (heap->count-1)/2; in spl_ptr_heap_delete_top() local
333 for (i = 0; i < limit; i = j) { in spl_ptr_heap_delete_top()
/PHP-8.1/ext/openssl/
H A Dxp_ssl.c158 zend_long limit; member
1123 sslsock->reneg->tokens -= (elapsed_time * (sslsock->reneg->limit / sslsock->reneg->window)); in php_openssl_limit_handshake_reneg()
1131 if (sslsock->reneg->tokens > sslsock->reneg->limit) { in php_openssl_limit_handshake_reneg()
1177 zend_long limit = OPENSSL_DEFAULT_RENEG_LIMIT; in php_openssl_init_server_reneg_limit() local
1183 limit = zval_get_long(val); in php_openssl_init_server_reneg_limit()
1187 if (limit < 0) { in php_openssl_init_server_reneg_limit()
1201 sslsock->reneg->limit = limit; in php_openssl_init_server_reneg_limit()
/PHP-8.1/ext/oci8/
H A Doci8.stub.php242 function oci_fetch_all($statement, &$output, int $offset = 0, int $limit = -1, int $flags = OCI_FET… argument
250 function ocifetchstatement($statement, &$output, int $offset = 0, int $limit = -1, int $flags = OCI… argument
/PHP-8.1/sapi/fpm/tests/
H A Dtester.inc1412 * @param int $limit
1417 int $limit = 1024,
1420 $this->logTool->setExpectedMessage($message, $limit, $repeat);
1550 * @param int $limit
1559 int $limit = 1024,
1564 $this->logTool->setExpectedMessage($message, $limit, $repeat);
1588 $limit = $messageLen > 1024 ? $messageLen + 16 : 1024;
1589 $this->logTool->setExpectedMessage($message, $limit);
H A Dstatus.inc239 …"# HELP phpfpm_max_children_reached The number of times, the process limit has been reached, when …
/PHP-8.1/
H A Dphp.ini-development302 ; A value of 0 disables the depth limit.
432 ; https://php.net/memory-limit
1045 ; PCRE library backtracking limit.
1046 ; https://php.net/pcre.backtrack-limit
1049 ; PCRE library recursion limit.
1052 ; stack size limit imposed by the Operating System).
1053 ; https://php.net/pcre.recursion-limit
1130 ; Maximum number of persistent links. -1 means no limit.
1151 ; Maximum number of persistent links. -1 means no limit.
1167 ; Maximum number of links. -1 means no limit.
[all …]
H A Dphp.ini-production302 ; A value of 0 disables the depth limit.
434 ; https://php.net/memory-limit
1047 ; PCRE library backtracking limit.
1048 ; https://php.net/pcre.backtrack-limit
1051 ; PCRE library recursion limit.
1054 ; stack size limit imposed by the Operating System).
1055 ; https://php.net/pcre.recursion-limit
1132 ; Maximum number of persistent links. -1 means no limit.
1153 ; Maximum number of persistent links. -1 means no limit.
1169 ; Maximum number of links. -1 means no limit.
[all …]
/PHP-8.1/ext/oci8/tests/
H A Dbug41069.phpt2 Bug #41069 (Oracle crash with certain data over a DB-link when prefetch memory limit used - Oracle …
/PHP-8.1/ext/mbstring/
H A Dmbstring.stub.php162 function mb_split(string $pattern, string $string, int $limit = -1): array|false {} argument
H A Dmbstring_arginfo.h245 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, limit, IS_LONG, 0, "-1")
/PHP-8.1/ext/hash/xxhash/
H A Dxxhash.h1367 const xxh_u8* const limit = bEnd - 15; in XXH32_endian_align() local
1378 } while (input < limit); in XXH32_endian_align()
1480 const xxh_u8* const limit = bEnd - 16; in XXH32_update() local
1491 } while (p<=limit); in XXH32_update()
1905 const xxh_u8* const limit = bEnd - 32; in XXH64_endian_align() local
1916 } while (input<=limit); in XXH64_endian_align()
2017 const xxh_u8* const limit = bEnd - 32; in XXH64_update() local
2028 } while (p<=limit); in XXH64_update()
4102 const xxh_u8* const limit = bEnd - XXH3_INTERNALBUFFER_SIZE; in XXH3_update() local
4110 } while (input<limit); in XXH3_update()
/PHP-8.1/ext/iconv/
H A Diconv.c2141 char *p, *limit; in PHP_FUNCTION() local
2153 limit = ZSTR_VAL(decoded_header.s) + ZSTR_LEN(decoded_header.s); in PHP_FUNCTION()
2154 for (p = ZSTR_VAL(decoded_header.s); p < limit; p++) { in PHP_FUNCTION()
2160 while (++p < limit) { in PHP_FUNCTION()
2167 header_value_len = limit - p; in PHP_FUNCTION()
/PHP-8.1/sapi/fpm/
H A Dwww.conf.in115 ; This value sets the limit on the number of simultaneous requests that will be
173 ; max children reached - number of times, the process limit has been reached,
376 ; This option will enable timeout limit to be applied unconditionally
430 ; prevent configuration mistakes on the web server side. You should only limit

Completed in 158 milliseconds

123456