Home
last modified time | relevance | path

Searched refs:limit (Results 1 – 25 of 119) sorted by path

12345

/PHP-7.4/
H A DNEWS250 . Fixed bug #81070 (Integer underflow in memory limit comparison).
382 . Fixed bug #80866 (preg_split ignores limit flag when pattern with \K has
1201 . Fixed bug #78808 ([LMDB] MDB_MAP_FULL: Environment mapsize limit reached).
1510 . Updated to LiteSpeed SAPI V7.4.3 (increased response header count limit from
1928 . Updated to LiteSpeed SAPI V7.4.3 (increased response header count limit from
2726 . Fixed bug #74991 (include_path has a 4096 char limit in some cases).
H A DUPGRADING360 intended to prevent stack overflows. The default depth limit is 4096 and
/PHP-7.4/Zend/tests/
H A Dbug40770.phpt2 Bug #40770 (Apache child exits when PHP memory limit reached)
H A Dbug74408.phpt2 Bug #74408 (Endless loop bypassing execution time limit)
H A Dbug76846.phpt2 Bug #76846: Segfault in shutdown function after memory limit error
H A Dbug81070.phpt2 Bug #81070 Setting memory limit to below current usage
13 Warning: Failed to set memory limit to 3145728 bytes (Current memory usage is %d bytes) in %s on li…
H A Dbug81104.phpt2 Bug #81104: Warning: "Failed to set memory limit to ... bytes" emitted after exit in debug
H A Ddebug_backtrace_limit.phpt2 debug_backtrace limit
H A Ddebug_print_backtrace_limit.phpt2 debug_print_backtrace limit
/PHP-7.4/Zend/
H A Dzend_alloc.c251 size_t limit; /* memory limit */ member
371 size_t limit, in zend_mm_safe_error() argument
383 limit, in zend_mm_safe_error()
951 if (UNEXPECTED(ZEND_MM_CHUNK_SIZE > heap->limit - heap->real_size)) {
1477 if (UNEXPECTED(new_size - old_size > heap->limit - heap->real_size)) {
1478 if (zend_mm_gc(heap) && new_size - old_size <= heap->limit - heap->real_size) {
1769 if (UNEXPECTED(new_size > heap->limit - heap->real_size)) {
1770 if (zend_mm_gc(heap) && new_size <= heap->limit - heap->real_size) {
1883 heap->limit = ((size_t)Z_L(-1) >> (size_t)Z_L(1));
2669 AG(mm_heap)->limit = memory_limit;
[all …]
H A Dzend_builtin_functions.c228 ZEND_ARG_INFO(0, limit)
233 ZEND_ARG_INFO(0, limit)
2223 zend_long limit = 0; in ZEND_FUNCTION() local
2225 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ll", &options, &limit) == FAILURE) { in ZEND_FUNCTION()
2236 while (ptr && (limit == 0 || frameno < limit)) { in ZEND_FUNCTION()
2399 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit)… in zend_fetch_debug_backtrace() argument
2439 while (ptr && (limit == 0 || frameno < limit)) { in zend_fetch_debug_backtrace()
2611 zend_long limit = 0; in ZEND_FUNCTION() local
2613 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ll", &options, &limit) == FAILURE) { in ZEND_FUNCTION()
2617 zend_fetch_debug_backtrace(return_value, 1, options, limit); in ZEND_FUNCTION()
H A Dzend_builtin_functions.h26 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit);
H A Dzend_portability.h360 # define do_alloca_ex(size, limit, use_heap) \ argument
361 ((use_heap = (UNEXPECTED((size) > (limit)))) ? emalloc(size) : alloca(size))
/PHP-7.4/build/
H A Dlibtool.m4824 # no limit to the length of command line arguments.
825 # Libtool will interpret -1 as no limit whatsoever
/PHP-7.4/ext/dba/tests/
H A Dbug78808.phpt2 Bug #78808 ([LMDB] MDB_MAP_FULL: Environment mapsize limit reached)
/PHP-7.4/ext/exif/tests/
H A Dbug68799.phpt17 function doStuff ($limit) {
22 for ($i = 0; $i < $limit; $i++) {
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic12335 # Label is followed by a UUID; we have to limit string length to avoid
24697 # 4 GB limit implies unsigned integer
H A Dmagic私はガラスを食べられます12335 # Label is followed by a UUID; we have to limit string length to avoid
24697 # 4 GB limit implies unsigned integer
/PHP-7.4/ext/filter/tests/
H A Dbug52929.phpt9 // Beyond the allowable limit for an e-mail address.
/PHP-7.4/ext/gmp/tests/
H A Dgmp_random_bits.phpt18 $limit = (2 ** 30) - 1;
22 if ($result < 0 || $result > $limit) {
/PHP-7.4/ext/iconv/
H A Diconv.c2405 char *p, *limit; in PHP_FUNCTION() local
2417 limit = ZSTR_VAL(decoded_header.s) + ZSTR_LEN(decoded_header.s); in PHP_FUNCTION()
2418 for (p = ZSTR_VAL(decoded_header.s); p < limit; p++) { in PHP_FUNCTION()
2424 while (++p < limit) { in PHP_FUNCTION()
2431 header_value_len = limit - p; in PHP_FUNCTION()
/PHP-7.4/ext/imap/
H A Dphp_imap.c784 add_assoc_long_ex(return_value, "limit", sizeof("limit") - 1, qlist->limit); in mail_getquota()
788 add_assoc_long_ex(&t_map, "limit", sizeof("limit") - 1, qlist->limit); in mail_getquota()
/PHP-7.4/ext/intl/transliterator/
H A Dtransliterator_methods.c305 limit = -1; in PHP_FUNCTION() local
318 &arg1, &str, &str_len, &start, &limit ) == FAILURE ) in PHP_FUNCTION()
352 &str, &str_len, &start, &limit ) == FAILURE ) in PHP_FUNCTION()
359 if( limit < -1 ) in PHP_FUNCTION()
367 if( start < 0 || ((limit != -1 ) && (start > limit )) ) in PHP_FUNCTION()
385 if( ( start > ustr_len ) || (( limit != -1 ) && (limit > ustr_len ) ) ) in PHP_FUNCTION()
407 int32_t temp_limit = ( limit == -1 ? ustr_len : (int32_t) limit ); in PHP_FUNCTION()
/PHP-7.4/ext/intl/uchar/
H A Duchar.c186 UChar32 start, UChar32 limit, in enumCharType_callback() argument
196 ZVAL_LONG(&args[1], limit); in enumCharType_callback()
294 ZEND_ARG_INFO(0, limit)
329 UChar32 start, limit; in IC_METHOD() local
337 (convert_cp(&limit, zlimit) == FAILURE)) { in IC_METHOD()
341 …u_enumCharNames(start, limit, (UEnumCharNamesFn*)enumCharNames_callback, &context, nameChoice, &er… in IC_METHOD()
/PHP-7.4/ext/json/
H A Djson_scanner.re27 #define YYLIMIT s->limit
99 s->limit = (php_json_ctype *) str + str_len;
202 if (s->limit < s->cursor) {

Completed in 175 milliseconds

12345