Home
last modified time | relevance | path

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

12

/PHP-7.0/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) ) --";
34 foreach( $step_arr as $step ) {
35 var_dump( range( 1, 5, $step ) );
43 -- Testing ( (low < high) && (step = 0) ) --
44 Warning: range(): step exceeds the specified range in %s on line %d
51 -- Testing ( (low > high) && (step = 0) ) --
59 -- 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.0/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.0/Zend/tests/generators/
H A Dxrange.phpt6 function xrange($start, $end, $step = 1) {
7 for ($i = $start; $i <= $end; $i += $step) {
/PHP-7.0/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h41 zval func, step, fini; member
H A Dsqlite_driver.c124 if (!Z_ISUNDEF(func->step)) { in pdo_sqlite_cleanup_callbacks()
125 zval_ptr_dtor(&func->step); in pdo_sqlite_cleanup_callbacks()
459 do_callback(&func->astep, &func->step, argc, argv, context, 1); in php_sqlite3_func_step_callback()
626 ZVAL_COPY(&func->step, step_callback); in PHP_METHOD()
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_prompt.h37 PHPDBG_COMMAND(step);
H A DREADME.md71 - -E enable step through eval()
H A Dphpdbg_prompt.c74 …PHPDBG_COMMAND_D(step, "step through execution", 's', NULL, 0, PHPDBG_ASYNC_S…
647 PHPDBG_COMMAND(step) /* {{{ */ in PHPDBG_COMMAND() argument
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.0/ext/sqlite3/
H A Dphp_sqlite3_structs.h59 zval func, step, fini; member
H A Dsqlite3.c851 sqlite3_do_callback(&func->astep, &func->step, argc, argv, context, 1);
1010 ZVAL_COPY(&func->step, step_callback);
2110 if (!Z_ISUNDEF(func->step)) {
2111 zval_ptr_dtor(&func->step);
/PHP-7.0/ext/snmp/
H A Dsnmp.c370 int step; member
730 if ((st & SNMP_CMD_SET) && objid_query->count > objid_query->step) { in php_snmp_internal()
758 …for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query… in php_snmp_internal()
896 …SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer wi… in php_snmp_internal()
897 …uery->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->st… in php_snmp_internal()
898 objid_query->step /= 2; in php_snmp_internal()
1101 objid_query->step = objid_query->count; in php_snmp_parse_oid()
1515 objid_query.step = snmp_object->max_oids; in php_snmp()
/PHP-7.0/ext/standard/
H A Darray.c2025 double __calc_size = ((start - end) / step) + 1; \
2052 double step = 1.0; local
2065 step = zval_get_double(zstep);
2068 if (step < 0.0) {
2069 step *= -1;
2077 zend_long lstep = (zend_long) step;
2155 if (low - high < step || step <= 0) {
2163 for (i = 0, element = low; i < size && element >= high; ++i, element = low - (i * step)) {
2169 if (high - low < step || step <= 0) {
2196 if (step <= 0) {
[all …]
/PHP-7.0/ext/standard/tests/file/windows_acls/
H A Dcommon.inc111 returns false. If the $perm_entry contains 'N' skip this step.
/PHP-7.0/ext/
H A Dext_skel328 step 6 confirms that your module is compiled into PHP. Then, start writing
/PHP-7.0/ext/ldap/tests/
H A DREADME55 The next step is to go into the PHP-Source-directory. Configure and make the source as appropriate.
/PHP-7.0/
H A DREADME.MAILINGLIST_RULES63 2. Consider taking a step back from a very active thread now and then. Maybe
H A DINSTALL242 --with-config-file-path=/some/path in step 5.
293 step 3 above:
455 6. For the following step, make sure /opt/netscape/suitespot/ is where
/PHP-7.0/ext/sqlite3/libsqlite/
H A Dsqlite3ext.h138 int (*step)(sqlite3_stmt*); member
412 #define sqlite3_step sqlite3_api->step
/PHP-7.0/main/streams/
H A Dstreams.c1424 int step = CHUNK_SIZE; in _php_stream_copy_to_mem() local
1465 max_len = ssbuf.sb.st_size + step; in _php_stream_copy_to_mem()
1467 max_len = step; in _php_stream_copy_to_mem()
1476 result = zend_string_extend(result, max_len + step, persistent); in _php_stream_copy_to_mem()
1477 max_len += step; in _php_stream_copy_to_mem()
/PHP-7.0/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.0/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.0/ext/phar/
H A DTODO79 would need to be performed in an installation step, phar would not attempt
/PHP-7.0/win32/
H A Dinstall.txt269 The next step is to set up a valid configuration file for PHP, php.ini.
296 follow the next step. Set the doc_root to point to your web servers
309 PHP is now setup on your system. The next step is to choose a web
375 step as it provides crucial information for installing PHP on
438 (and should) skip this step. Under ISAPI Filters, add a new ISAPI
711 shellcgi directory and remove it just after (this step creates 5

Completed in 152 milliseconds

12