/php-src/ext/standard/tests/file/ |
H A D | file_get_contents_variation9.phpt | 22 fwrite($h, "Here is a repeated amount of data"); 51 …amount of dataHere is a repeated amount of dataHere is a repeated amount of dataHere is a repeated… 52 …amount of dataHere is a repeated amount of dataHere is a repeated amount of dataHere is a repeated… 53 …amount of dataHere is a repeated amount of dataHere is a repeated amount of dataHere is a repeated…
|
H A D | disk_free_space_basic.phpt | 33 … (like BTRFS) have a fuzzy notion of "free space" and will thus claim the same amount of free space
|
/php-src/ext/xmlwriter/tests/ |
H A D | xmlwriter_toStream_normal_usage.phpt | 15 $amount = $writer->flush(); 16 echo "\nFlush amount: "; 17 var_dump($amount); 28 Flush amount: int(38)
|
/php-src/ext/gmp/tests/ |
H A D | gmp_setbit_long.phpt | 11 die("skip cannot determine free memory amount."); 16 /* Got amount in kb. */
|
/php-src/ext/standard/tests/math/ |
H A D | bug21523.phpt | 2 Bug #21523 (number_format tries to allocate negative amount of memory)
|
/php-src/Zend/tests/ |
H A D | bug44069.phpt | 10 // $newstring .= $string; //This uses an expected amount of mem.
|
/php-src/ext/filter/tests/ |
H A D | bug52929.phpt | 2 Bug #52929 (Segfault in filter_var with FILTER_VALIDATE_EMAIL with large amount of data)
|
/php-src/Zend/tests/property_hooks/ |
H A D | read_sibling_backing_value.phpt | 10 ; The test may use a large amount of memory on systems with a large stack limit
|
H A D | virtual_read_write.phpt | 10 ; The test may use a large amount of memory on systems with a large stack limit
|
H A D | backed_delegated_read_wirte.phpt | 10 ; The test may use a large amount of memory on systems with a large stack limit
|
/php-src/Zend/tests/stack_limit/ |
H A D | stack_limit_014.phpt | 19 ; The test may use a large amount of memory on systems with a large stack limit
|
H A D | stack_limit_001.phpt | 11 ; The test may use a large amount of memory on systems with a large stack limit
|
/php-src/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 427 int len, amount; in odbc_stmt_param_hook() local 433 amount = end - ptr; in odbc_stmt_param_hook() 434 if (amount == 0) { in odbc_stmt_param_hook() 437 if (amount > 8192) in odbc_stmt_param_hook() 438 amount = 8192; in odbc_stmt_param_hook() 439 len = php_stream_read(stm, ptr, amount); in odbc_stmt_param_hook()
|
/php-src/ext/curl/tests/ |
H A D | curl_copy_handle_variation2.phpt | 10 but this can only check on a limited amount of options...
|
/php-src/ext/pcre/tests/ |
H A D | preg_replace_basic.phpt | 13 …)\s*-\s*(\w)>', '\\1. \\2', $string)); //finds dashes with an indefinite amount of whitespace arou…
|
H A D | preg_replace_edit_basic.phpt | 21 …'\\1. \\2', $string)); //finds dashes with an indefinite amount of whitespace around them and…
|
/php-src/ext/date/lib/ |
H A D | parse_date.re | 718 static void add_with_overflow(Scanner *s, timelib_sll *e, timelib_sll amount, int multiplier) 721 if (__builtin_saddll_overflow(*e, amount * multiplier, e)) { 725 *e += (amount * multiplier); 745 …case TIMELIB_SECOND: add_with_overflow(s, &s->time->relative.s, amount, relunit->multiplier); br… 746 …case TIMELIB_MINUTE: add_with_overflow(s, &s->time->relative.i, amount, relunit->multiplier); br… 747 …case TIMELIB_HOUR: add_with_overflow(s, &s->time->relative.h, amount, relunit->multiplier); br… 748 …case TIMELIB_DAY: add_with_overflow(s, &s->time->relative.d, amount, relunit->multiplier); br… 749 …case TIMELIB_MONTH: add_with_overflow(s, &s->time->relative.m, amount, relunit->multiplier); br… 757 s->time->relative.d += (amount > 0 ? amount - 1 : amount) * 7; 768 s->time->relative.special.amount = amount; [all …]
|
H A D | timelib.c | 361 printf(" / %lld weekday", d->relative.special.amount); in timelib_dump_date()
|
H A D | tm2unixtime.c | 279 count = time->relative.special.amount; in do_adjust_special_weekday()
|
H A D | timelib.h | 237 timelib_sll amount; member
|
/php-src/ext/intl/formatter/ |
H A D | formatter.stub.php | 211 public function formatCurrency(float $amount, string $currency): string|false {} argument
|
/php-src/ext/intl/calendar/ |
H A D | calendar_methods.cpp | 282 amount; in PHP_FUNCTION() local 286 "Oll", &object, Calendar_ce_ptr, &field, &amount) == FAILURE) { in PHP_FUNCTION() 291 ZEND_VALUE_ERROR_OUT_OF_BOUND_VALUE(amount, 3); in PHP_FUNCTION() 295 co->ucal->add((UCalendarDateFields)field, (int32_t)amount, CALENDAR_ERROR_CODE(co)); in PHP_FUNCTION()
|
/php-src/docs-old/ |
H A D | self-contained-extensions.md | 66 It consists of two source files `foo.c` and `bar.c` (and any arbitrary amount of
|
/php-src/ext/intl/ |
H A D | php_intl.stub.php | 400 function numfmt_format_currency(NumberFormatter $formatter, float $amount, string $currency): strin… argument
|
/php-src/docs/source/core/data-structures/ |
H A D | reference-counting.rst | 6 large amount, you call ``malloc`` and ``free`` to acquire and release blocks of memory of some size.
|