Home
last modified time | relevance | path

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

12

/PHP-5.5/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.5/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.5/Zend/tests/generators/
H A Dxrange.phpt6 function xrange($start, $end, $step = 1) {
7 for ($i = $start; $i <= $end; $i += $step) {
/PHP-5.5/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.5/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.5/ext/sqlite3/
H A Dphp_sqlite3_structs.h61 zval *func, *step, *fini; member
H A Dsqlite3.c846 sqlite3_do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC);
1013 MAKE_STD_ZVAL(func->step);
1014 MAKE_COPY_ZVAL(&step_callback, func->step);
2069 if (func->step) {
2070 zval_ptr_dtor(&func->step);
/PHP-5.5/ext/snmp/
H A Dsnmp.c378 int step; member
742 if ((st & SNMP_CMD_SET) && objid_query->count > objid_query->step) { in php_snmp_internal()
770 …for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query… in php_snmp_internal()
910 …SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer wi… in php_snmp_internal()
911 …uery->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->st… in php_snmp_internal()
912 objid_query->step /= 2; in php_snmp_internal()
1119 objid_query->step = objid_query->count; in php_snmp_parse_oid()
1533 objid_query.step = snmp_object->max_oids; in php_snmp()
/PHP-5.5/ext/standard/
H A Darray.c1593 double step = 1.0; in PHP_FUNCTION() local
1607 step = Z_DVAL_P(zstep); in PHP_FUNCTION()
1610 if (step < 0.0) { in PHP_FUNCTION()
1611 step *= -1; in PHP_FUNCTION()
1622 long lstep = (long) step; in PHP_FUNCTION()
1679 if (low - high < step || step <= 0) { in PHP_FUNCTION()
1684 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { in PHP_FUNCTION()
1688 if (high - low < step || step <= 0) { in PHP_FUNCTION()
1693 for (value = low; value <= (high + DOUBLE_DRIFT_FIX); value = low + (++i * step)) { in PHP_FUNCTION()
1707 lstep = (long) step; in PHP_FUNCTION()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3ext.h140 int (*step)(sqlite3_stmt*); member
387 #define sqlite3_step sqlite3_api->step
/PHP-5.5/ext/standard/tests/file/windows_acls/
H A Dcommon.inc111 returns false. If the $perm_entry contains 'N' skip this step.
/PHP-5.5/ext/
H A Dext_skel296 step 6 confirms that your module is compiled into PHP. Then, start writing
/PHP-5.5/
H A DREADME.MAILINGLIST_RULES63 2. Consider taking a step back from a very active thread now and then. Maybe
H A DINSTALL216 step 10.
446 --with-config-file-path=/some/path in step 5.
497 step 3 above:
659 6. For the following step, make sure /opt/netscape/suitespot/ is where
/PHP-5.5/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.5/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.5/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.5/sapi/nsapi/
H A Dnsapi-readme.txt11 probably skip this step. The start script is located in:
/PHP-5.5/ext/phar/
H A DTODO79 would need to be performed in an installation step, phar would not attempt
/PHP-5.5/win32/
H A Dinstall.txt278 The next step is to set up a valid configuration file for PHP, php.ini.
305 follow the next step. Set the doc_root to point to your web servers
318 PHP is now setup on your system. The next step is to choose a web
384 step as it provides crucial information for installing PHP on
447 (and should) skip this step. Under ISAPI Filters, add a new ISAPI
720 shellcgi directory and remove it just after (this step creates 5
/PHP-5.5/ext/mbstring/libmbfl/
H A DLICENSE48 We protect your rights with a two-step method: (1) we copyright the
/PHP-5.5/Zend/
H A DZEND_CHANGES1136 (supports breakpoints, expression evaluation, step-in/over,

Completed in 107 milliseconds

12