Home
last modified time | relevance | path

Searched refs:step (Results 1 – 25 of 35) sorted by relevance

12

/PHP-7.4/ext/standard/tests/array/
H A Drange_errors.phpt10 echo "\n-- Testing ( (low < high) && (step = 0) ) --";
14 echo "\n\n-- Testing ( (low > high) && (step = 0) ) --";
18 echo "\n\n-- Testing ( (low < high) && (high-low < step) ) --";
21 echo "\n\n-- Testing ( (low > high) && (low-high < step) ) --";
36 foreach( $step_arr as $step ) {
37 var_dump( range( 1, 5, $step ) );
45 -- Testing ( (low < high) && (step = 0) ) --
46 Warning: range(): step exceeds the specified range in %s on line %d
53 -- Testing ( (low > high) && (step = 0) ) --
61 -- Testing ( (low < high) && (high-low < step) ) --
[all …]
H A Drange.phpt39 echo "\n-- Passing step with Low and High --\n";
46 echo "\n-- Testing basic string with step --\n";
333 -- Passing step with Low and High --
431 -- Testing basic string with step --
/PHP-7.4/ext/standard/tests/streams/
H A Dproc_open_bug51800_right2.phpt27 $step = 1024;
30 fwrite(STDOUT, substr($data0, $i0, $step));
31 fwrite(STDERR, substr($data1, $i1, $step));
32 $i0 += $step;
33 $i1 += $step;
/PHP-7.4/Zend/tests/generators/
H A Dxrange.phpt6 function xrange($start, $end, $step = 1) {
7 for ($i = $start; $i <= $end; $i += $step) {
/PHP-7.4/sapi/fpm/tests/
H A Dbug74083-concurrent-reload.phpt42 $step = 1000;
44 for ($interval = 0; $interval < $max_interval; $interval += $step) {
52 echo "Reached interval $interval us with $step us steps\n";
H A Dbug76601-reload-child-signals.phpt53 $step = 1000;
55 for ($interval = 0; $interval < $max_interval; $interval += $step) {
63 echo "Reached interval $interval us with $step us steps\n";
/PHP-7.4/sapi/cli/tests/
H A Dsapi_windows_set_ctrl_handler.phpt50 $max = 5000; $total = 0; $step = 100;
52 usleep($step);
53 $total += $step;
/PHP-7.4/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h39 zval func, step, fini; member
H A Dsqlite_driver.c121 if (!Z_ISUNDEF(func->step)) { in pdo_sqlite_cleanup_callbacks()
122 zval_ptr_dtor(&func->step); in pdo_sqlite_cleanup_callbacks()
467 do_callback(&func->astep, &func->step, argc, argv, context, 1); in php_sqlite3_func_step_callback()
638 ZVAL_COPY(&func->step, step_callback); in PHP_METHOD()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_prompt.h37 PHPDBG_COMMAND(step);
H A DREADME.md68 * `-E` enable step through eval()
H A Dxml.md399 step section
563 - sets stepping to either opcode or line (so a step command will either advance one op or one line)
/PHP-7.4/ext/sqlite3/
H A Dphp_sqlite3_structs.h57 zval func, step, fini; member
H A Dsqlite3.c906 sqlite3_do_callback(&func->astep, &func->step, argc, argv, context, 1); in php_sqlite3_callback_step()
1060 ZVAL_COPY(&func->step, step_callback); in PHP_METHOD()
2357 if (!Z_ISUNDEF(func->step)) { in php_sqlite3_object_free_storage()
2358 zval_ptr_dtor(&func->step); in php_sqlite3_object_free_storage()
/PHP-7.4/ext/gd/tests/
H A Dimagegammacorrect_variation2.phpt2 Apply imagegammacorrect() to a step wedge
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_simd_inc.h107 int step, sljit_s32 dst_ind, sljit_s32 cmp1_ind, sljit_s32 cmp2_ind, sljit_s32 tmp_ind) in fast_forward_char_pair_sse2_compare() argument
113 SLJIT_ASSERT(step >= 0 && step <= 3); in fast_forward_char_pair_sse2_compare()
117 if (step == 0) in fast_forward_char_pair_sse2_compare()
131 if (step != 2) in fast_forward_char_pair_sse2_compare()
143 switch (step) in fast_forward_char_pair_sse2_compare()
/PHP-7.4/ext/snmp/
H A Dsnmp.c354 int step; member
704 if ((st & SNMP_CMD_SET) && objid_query->count > objid_query->step) { in php_snmp_internal()
732 …for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query… in php_snmp_internal()
870 …SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer wi… in php_snmp_internal()
871 …uery->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->st… in php_snmp_internal()
872 objid_query->step /= 2; in php_snmp_internal()
1065 objid_query->step = objid_query->count; in php_snmp_parse_oid()
1470 objid_query.step = snmp_object->max_oids; in php_snmp()
/PHP-7.4/ext/standard/tests/file/windows_acls/
H A Dcommon.inc111 returns false. If the $perm_entry contains 'N' skip this step.
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_unbuffered_2050.phpt41 PDO::query() will prepare and execute a statement in one step.
/PHP-7.4/docs/
H A Dmailinglist-rules.md60 2. Consider taking a step back from a very active thread now and then. Maybe
/PHP-7.4/ext/ldap/tests/
H A DREADME.md57 The next step is to go into the PHP-Source-directory. Configure and make the
/PHP-7.4/ext/standard/
H A Darray.c2734 double __calc_size = ((start - end) / step) + 1; \
2761 double step = 1.0; local
2785 step = zval_get_double(zstep);
2788 if (step < 0.0) {
2789 step *= -1;
2797 zend_long lstep = (zend_long) step;
2862 if (low - high < step || step <= 0) {
2876 if (high - low < step || step <= 0) {
2903 if (step <= 0) {
2908 lstep = (zend_ulong)step;
[all …]
/PHP-7.4/main/streams/
H A Dstreams.c1460 int step = CHUNK_SIZE; in _php_stream_copy_to_mem() local
1507 max_len = MAX(ssbuf.sb.st_size - src->position, 0) + step; in _php_stream_copy_to_mem()
1509 max_len = step; in _php_stream_copy_to_mem()
1519 result = zend_string_extend(result, max_len + step, persistent); in _php_stream_copy_to_mem()
1520 max_len += step; in _php_stream_copy_to_mem()
/PHP-7.4/ext/pdo_odbc/tests/
H A Dlong_columns.phpt36 // 7. set the environment variable PDOTEST_DSN="odbc:<system dsn from step 5>" ex: SET PDOTEST_DSN=…
/PHP-7.4/
H A DUPGRADING.INTERNALS288 PHP build system at the configure step and shouldn't be used anymore:
307 --enable-option-checking=fatal option can be used in the configure step

Completed in 100 milliseconds

12