Home
last modified time | relevance | path

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

12

/PHP-5.6/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-5.6/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-5.6/Zend/tests/generators/
H A Dxrange.phpt6 function xrange($start, $end, $step = 1) {
7 for ($i = $start; $i <= $end; $i += $step) {
/PHP-5.6/ext/ereg/regex/
H A Dengine.c14 #define step sstep macro
25 #define step lstep macro
644 st = step(m->g, startst, stopst, st, NOTHING, st);
670 st = step(m->g, startst, stopst, st, flagch, st);
684 st = step(m->g, startst, stopst, st, flagch, st);
696 st = step(m->g, startst, stopst, tmp, c, st);
737 st = step(m->g, startst, stopst, st, NOTHING, st);
773 st = step(m->g, startst, stopst, st, flagch, st);
787 st = step(m->g, startst, stopst, tmp, c, st);
812 step(g, start, stop, bef, ch, aft) in step() function
[all …]
H A Dengine.ih12 static states step(register struct re_guts *g, sopno start, sopno stop, register states bef, int ch…
/PHP-5.6/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h41 zval *func, *step, *fini; member
H A Dsqlite_driver.c124 if (func->step) { in pdo_sqlite_cleanup_callbacks()
125 zval_ptr_dtor(&func->step); in pdo_sqlite_cleanup_callbacks()
470 do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC); in php_sqlite3_func_step_callback()
647 MAKE_STD_ZVAL(func->step); in PHP_METHOD()
648 MAKE_COPY_ZVAL(&step_callback, func->step); in PHP_METHOD()
/PHP-5.6/sapi/phpdbg/
H A Dphpdbg_prompt.h33 PHPDBG_COMMAND(step);
H A DREADME.md71 - -E enable step through eval()
H A Dphpdbg.c981 int step = 0; local
1072 step = 0;
1163 step = 1;
1430 if (step) {
H A Dphpdbg_prompt.c44 PHPDBG_COMMAND_D(step, "step through execution", 's', NULL, 0),
410 PHPDBG_COMMAND(step) /* {{{ */ in PHPDBG_COMMAND() argument
/PHP-5.6/ext/sqlite3/
H A Dphp_sqlite3_structs.h61 zval *func, *step, *fini; member
H A Dsqlite3.c873 sqlite3_do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC);
1040 MAKE_STD_ZVAL(func->step);
1041 MAKE_COPY_ZVAL(&step_callback, func->step);
2118 if (func->step) {
2119 zval_ptr_dtor(&func->step);
/PHP-5.6/ext/snmp/
H A Dsnmp.c376 int step; member
740 if ((st & SNMP_CMD_SET) && objid_query->count > objid_query->step) { in php_snmp_internal()
768 …for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query… in php_snmp_internal()
908 …SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer wi… in php_snmp_internal()
909 …uery->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->st… in php_snmp_internal()
910 objid_query->step /= 2; in php_snmp_internal()
1117 objid_query->step = objid_query->count; in php_snmp_parse_oid()
1531 objid_query.step = snmp_object->max_oids; in php_snmp()
/PHP-5.6/ext/standard/
H A Darray.c1598 double step = 1.0; in PHP_FUNCTION() local
1612 step = Z_DVAL_P(zstep); in PHP_FUNCTION()
1615 if (step < 0.0) { in PHP_FUNCTION()
1616 step *= -1; in PHP_FUNCTION()
1627 long lstep = (long) step; in PHP_FUNCTION()
1684 if (low - high < step || step <= 0) { in PHP_FUNCTION()
1689 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { in PHP_FUNCTION()
1693 if (high - low < step || step <= 0) { in PHP_FUNCTION()
1698 for (value = low; value <= (high + DOUBLE_DRIFT_FIX); value = low + (++i * step)) { in PHP_FUNCTION()
1712 lstep = (long) step; in PHP_FUNCTION()
/PHP-5.6/ext/sqlite3/libsqlite/
H A Dsqlite3ext.h140 int (*step)(sqlite3_stmt*); member
387 #define sqlite3_step sqlite3_api->step
/PHP-5.6/ext/standard/tests/file/windows_acls/
H A Dcommon.inc111 returns false. If the $perm_entry contains 'N' skip this step.
/PHP-5.6/ext/
H A Dext_skel328 step 6 confirms that your module is compiled into PHP. Then, start writing
/PHP-5.6/
H A DREADME.MAILINGLIST_RULES63 2. Consider taking a step back from a very active thread now and then. Maybe
/PHP-5.6/main/streams/
H A Dstreams.c1430 int step = CHUNK_SIZE; in _php_stream_copy_to_mem() local
1468 max_len = ssbuf.sb.st_size + step; in _php_stream_copy_to_mem()
1470 max_len = step; in _php_stream_copy_to_mem()
1478 *buf = perealloc_rel_orig(*buf, max_len + step, persistent); in _php_stream_copy_to_mem()
1479 max_len += step; in _php_stream_copy_to_mem()
/PHP-5.6/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_unbuffered_2050.phpt41 PDO::query() will prepare and execute a statement in one step.
/PHP-5.6/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-5.6/sapi/nsapi/
H A Dnsapi-readme.txt11 probably skip this step. The start script is located in:
/PHP-5.6/ext/phar/
H A DTODO79 would need to be performed in an installation step, phar would not attempt

Completed in 100 milliseconds

12