Home
last modified time | relevance | path

Searched refs:limit (Results 76 – 100 of 138) sorted by relevance

123456

/PHP-8.1/sapi/fpm/tests/
H A Dlog-dwd-limit-8000-msg-4096.phpt2 FPM: Direct worker output decorated log with limit 8000 with 4096 msg
H A Dlog-bm-limit-1024-msg-80.phpt2 FPM: Buffered message output log with limit 1024 and msg 80
H A Dlog-bm-limit-2048-msg-4000.phpt2 FPM: Buffered message output log with limit 2048 and msg 4000
H A Dlog-bwd-limit-1050-msg-2048.phpt2 FPM: Buffered worker output decorated log with limit 1050 with 2048 msg
H A Dlog-bwp-limit-1024-msg-120.phpt2 FPM: Buffered worker output plain log with limit 1024 and msg 120
H A Dlog-bwp-limit-1500-msg-3300.phpt2 FPM: Buffered worker output plain log with limit 1500 and msg 3300
H A Dlog-dwd-limit-1050-msg-2048.phpt2 FPM: Direct worker output decorated log with limit 1050 with 2048 msg
H A Dlog-dwp-limit-1000-msg-2000.phpt2 FPM: Direct worker output plain log with limit 1000 and msg 2000
/PHP-8.1/ext/standard/
H A Drandom.c270 zend_ulong limit = ZEND_ULONG_MAX - (ZEND_ULONG_MAX % umax) - 1; in php_random_int() local
273 while (trial > limit) { in php_random_int()
H A Dfile.c2054 char *temp, *bptr, *line_end, *limit; in php_fgetcsv() local
2069 line_end = limit = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len); in php_fgetcsv()
2070 line_end_len = buf_len - (size_t)(limit - buf); in php_fgetcsv()
2086 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2092 if (*tmp == enclosure && tmp < limit) { in php_fgetcsv()
2161 line_end = limit = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len); in php_fgetcsv()
2162 line_end_len = buf_len - (size_t)(limit - buf); in php_fgetcsv()
2227 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2251 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2282 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
/PHP-8.1/Zend/asm/
H A Djump_x86_64_ms_pe_masm.asm54 ; | limit | base | R12 | R13 |
119 ; save current stack limit
169 ; restore current stack limit
H A Dmake_i386_ms_pe_masm.asm12 ; | fc_mxcsr|fc_x87_cw| fc_strg |fc_deallo| limit | base | fc_seh | EDI |
58 ; compute bottom address of context stack (limit)
/PHP-8.1/ext/standard/tests/file/windows_mb_path/
H A Dtest_long_path_bug30730.phpt2 Bug #30730 Filename path length limit broken on NTFS volume, using rename
/PHP-8.1/Zend/tests/
H A Ddebug_backtrace_limit.phpt2 debug_backtrace limit
/PHP-8.1/ext/standard/tests/http/
H A Dbug38802.phpt110 Warning: fopen(http://%s:%d/foo/bar): Failed to open stream: Redirection limit reached, aborting in…
123 Warning: fopen(http://%s:%d/foo/bar): Failed to open stream: Redirection limit reached, aborting in…
132 Warning: fopen(http://%s:%d/foo/bar): Failed to open stream: Redirection limit reached, aborting in…
/PHP-8.1/ext/session/
H A Dmod_mm.c440 time_t limit; in PS_GC_FUNC() local
447 time(&limit); in PS_GC_FUNC()
449 limit -= maxlifetime; in PS_GC_FUNC()
457 if (sd->ctime < limit) { in PS_GC_FUNC()
/PHP-8.1/ext/oci8/tests/
H A Dbug44113.phpt26 // timeout limit on slow networks.
/PHP-8.1/ext/intl/uchar/
H A Duchar.c165 UChar32 start, UChar32 limit, UCharCategory type) { in enumCharType_callback() argument
174 ZVAL_LONG(&args[1], limit); in enumCharType_callback()
294 UChar32 start, limit; in IC_METHOD() local
310 …if (convert_cp(&start, string_start, int_start) == FAILURE || convert_cp(&limit, string_limit, int… in IC_METHOD()
314 …u_enumCharNames(start, limit, (UEnumCharNamesFn*)enumCharNames_callback, &context, nameChoice, &er… in IC_METHOD()
/PHP-8.1/ext/phar/tests/
H A Dbug74991.phpt2 Phar: PHP bug #74991: include_path has a 4096 char (minus "__DIR__:") limit, in some PHAR cases
/PHP-8.1/ext/standard/tests/streams/
H A Dproc_open_bug69900.phpt52 /* It is expected that the first call takes more than the limit.
/PHP-8.1/ext/spl/
H A Dspl_iterators.c1301 intern->u.limit.offset = 0; /* start at beginning */ in spl_dual_it_construct()
1302 intern->u.limit.count = -1; /* get all */ in spl_dual_it_construct()
1303 …ters(ZEND_NUM_ARGS(), "O|ll", &zobject, ce_inner, &intern->u.limit.offset, &intern->u.limit.count)… in spl_dual_it_construct()
1306 if (intern->u.limit.offset < 0) { in spl_dual_it_construct()
1310 if (intern->u.limit.count < -1) { in spl_dual_it_construct()
2178 …if (intern->u.limit.count != -1 && intern->current.pos >= intern->u.limit.offset + intern->u.limit in spl_limit_it_valid()
2190 if (pos < intern->u.limit.offset) { in spl_limit_it_seek()
2194 if (pos >= intern->u.limit.offset + intern->u.limit.count && intern->u.limit.count != -1) { in spl_limit_it_seek()
2240 spl_limit_it_seek(intern, intern->u.limit.offset); in PHP_METHOD()
2255 …RETURN_BOOL((intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern-… in PHP_METHOD()
[all …]
H A Dspl_iterators.h129 } limit; member
/PHP-8.1/ext/mbstring/libmbfl/filters/
H A Dmbfilter_cp5022x.c442 const int limit = cp932ext3_ucs_table_size > in mbfl_filt_conv_wchar_cp50221() local
446 for (i = 0; i < limit; i++) { in mbfl_filt_conv_wchar_cp50221()
574 const int limit = cp932ext3_ucs_table_size > in mbfl_filt_conv_wchar_cp50222() local
578 for (i = 0; i < limit; i++) { in mbfl_filt_conv_wchar_cp50222()
/PHP-8.1/Zend/
H A Dzend_alloc.c252 size_t limit; /* memory limit */ member
372 size_t limit, in zend_mm_safe_error() argument
384 limit, in zend_mm_safe_error()
1807 if (UNEXPECTED(new_size > heap->limit - heap->real_size)) {
1917 heap->limit = (size_t)Z_L(-1) >> 1;
2720 AG(mm_heap)->limit = memory_limit;
2781 if (add_size > heap->limit - heap->size && !heap->overflow) {
2785 heap->limit, "file", 0, add_size);
2789 heap->limit, add_size);
2862 mm_heap->limit = (size_t)Z_L(-1) >> 1;
[all …]
H A Dzend_builtin_functions.c1622 zend_long limit = 0; in ZEND_FUNCTION() local
1625 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ll", &options, &limit) == FAILURE) { in ZEND_FUNCTION()
1629 zend_fetch_debug_backtrace(&backtrace, 1, options, limit); in ZEND_FUNCTION()
1640 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit)… in zend_fetch_debug_backtrace() argument
1664 while (call && (limit == 0 || frameno < limit)) { in zend_fetch_debug_backtrace()
1843 zend_long limit = 0; in ZEND_FUNCTION() local
1845 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ll", &options, &limit) == FAILURE) { in ZEND_FUNCTION()
1849 zend_fetch_debug_backtrace(return_value, 1, options, limit); in ZEND_FUNCTION()

Completed in 90 milliseconds

123456