/PHP-8.3/ext/sqlite3/tests/ |
H A D | sqlite3_trampoline_create_aggregate.phpt | 26 $step = [$o, 'step']; 56 Trampoline for step 57 Trampoline for step 58 Trampoline for step 59 Trampoline for step 60 Trampoline for step 61 Trampoline for step 62 Trampoline for step 63 Trampoline for step 64 Trampoline for step [all …]
|
/PHP-8.3/ext/standard/tests/array/range/ |
H A D | range_step_errors.phpt | 2 range() programattic errors for the $step parameter 62 echo "-- Testing ( (low < high) && (high-low < step) ) --\n"; 69 echo "-- Testing ( (low > high) && (low-high < step) ) --\n"; 110 range(): Argument #3 ($step) cannot be 0 111 range(): Argument #3 ($step) cannot be 0 112 range(): Argument #3 ($step) cannot be 0 113 range(): Argument #3 ($step) cannot be 0 115 range(): Argument #3 ($step) must be a finite number, INF provided 116 range(): Argument #3 ($step) must be a finite number, INF provided 123 -- Testing ( (low < high) && (high-low < step) ) -- [all …]
|
H A D | range_inputs_float_basic.phpt | 16 echo "\nPassing int step\n"; 21 echo "\nPassing float step\n"; 67 Passing int step 99 Passing float step
|
H A D | range_inputs_int_basic.phpt | 16 echo "\nPassing int step\n"; 21 echo "\nPassing float step\n"; 83 Passing int step 115 Passing float step
|
H A D | range_inputs_string_numeric.phpt | 16 echo "\nPassing int step\n"; 21 echo "\nPassing float step\n"; 83 Passing int step 115 Passing float step
|
H A D | range_inputs_float_small_step_exhaustion.phpt | 17 The supplied range exceeds the maximum array size: start=0.0 end=100000000000.0 step=0.1 18 The supplied range exceeds the maximum array size: start=-%d end=%d step=1
|
H A D | range_inputs_string_variations.phpt | 2 Test range() function with unexpected string input variations or unusual step. 8 echo "int compatible float as step\n"; 18 int compatible float as step
|
H A D | range_inputs_string_invalid.phpt | 19 echo "Fractional step cannot be used on character ranges\n"; 20 var_dump( range("A", "H", 2.6) ); // Because step is fractional it tries to interpret inputs as flo… 78 Fractional step cannot be used on character ranges 80 Warning: range(): Argument #3 ($step) must be of type int when generating an array of characters, i…
|
H A D | range_inputs_int_with_float_step.phpt | 2 Test range() function with integer inputs and float step
|
H A D | range_inputs_string_digits_float_step.phpt | 2 Test range() function where boundary are string digits and step is a float
|
H A D | range_negative_step_decreasing_ranges.phpt | 2 range() allows $step parameter to be negative for decreasing ranges
|
H A D | range_bug70239_2.phpt | 12 The supplied range exceeds the maximum array size: start=0 end=%d step=1
|
H A D | range_bug70239_3.phpt | 12 The supplied range exceeds the maximum array size: start=-%d end=0 step=1
|
H A D | range_inputs_string_basic.phpt | 17 echo "\n-- Testing basic string with step --\n"; 142 -- Testing basic string with step --
|
/PHP-8.3/ext/standard/tests/streams/ |
H A D | proc_open_bug51800_right2.phpt | 27 $step = 1024; 30 fwrite(STDOUT, substr($data0, $i0, $step)); 31 fwrite(STDERR, substr($data1, $i1, $step)); 32 $i0 += $step; 33 $i1 += $step;
|
/PHP-8.3/ext/standard/tests/array/ |
H A D | gh14775.phpt | 2 GH-14775: Range negative step overflow 12 range(): Argument #3 ($step) must be greater than %s
|
/PHP-8.3/Zend/tests/generators/ |
H A D | xrange.phpt | 6 function xrange($start, $end, $step = 1) { 7 for ($i = $start; $i <= $end; $i += $step) {
|
/PHP-8.3/ext/pdo_sqlite/tests/ |
H A D | gh13998.phpt | 7 $step = function () { 16 $db->sqliteCreateAggregate('S', $step, $finalize, 1);
|
H A D | pdo_sqlite_createaggregate_002.phpt | 23 PDO::sqliteCreateAggregate(): Argument #2 ($step) must be a valid callback, function "a" not found …
|
/PHP-8.3/sapi/fpm/tests/ |
H A D | bug74083-concurrent-reload.phpt | 42 $step = 1000; 44 for ($interval = 0; $interval < $max_interval; $interval += $step) { 52 echo "Reached interval $interval us with $step us steps\n";
|
H A D | bug76601-reload-child-signals.phpt | 53 $step = 1000; 55 for ($interval = 0; $interval < $max_interval; $interval += $step) { 63 echo "Reached interval $interval us with $step us steps\n";
|
/PHP-8.3/ext/random/ |
H A D | engine_pcgoneseq128xslrr64.c | 28 static inline void step(php_random_status_state_pcgoneseq128xslrr64 *s) in step() function 40 step(s); in seed128() 42 step(s); in seed128() 54 step(s); in generate()
|
/PHP-8.3/sapi/cli/tests/ |
H A D | sapi_windows_set_ctrl_handler.phpt | 50 $max = 5000; $total = 0; $step = 100; 52 usleep($step); 53 $total += $step;
|
/PHP-8.3/ext/pdo_sqlite/ |
H A D | sqlite_driver.stub.php | 14 …public function sqliteCreateAggregate(string $name, callable $step, callable $finalize, int $numAr… argument
|
H A D | sqlite_driver_arginfo.h | 13 ZEND_ARG_TYPE_INFO(0, step, IS_CALLABLE, 0)
|