Home
last modified time | relevance | path

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

12

/PHP-5.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) ) --";
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.4/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.4/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.4/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);
1008 MAKE_STD_ZVAL(func->step);
1009 MAKE_COPY_ZVAL(&step_callback, func->step);
2064 if (func->step) {
2065 zval_ptr_dtor(&func->step);
/PHP-5.4/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.4/ext/standard/
H A Darray.c1628 double step = 1.0; in PHP_FUNCTION() local
1642 step = Z_DVAL_P(zstep); in PHP_FUNCTION()
1645 if (step < 0.0) { in PHP_FUNCTION()
1646 step *= -1; in PHP_FUNCTION()
1657 long lstep = (long) step; in PHP_FUNCTION()
1714 if (low - high < step || step <= 0) { in PHP_FUNCTION()
1719 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { in PHP_FUNCTION()
1723 if (high - low < step || step <= 0) { in PHP_FUNCTION()
1728 for (value = low; value <= (high + DOUBLE_DRIFT_FIX); value = low + (++i * step)) { in PHP_FUNCTION()
1742 lstep = (long) step; in PHP_FUNCTION()
H A Dbasic_functions.c358 ZEND_ARG_INFO(0, step)
/PHP-5.4/ext/sqlite3/libsqlite/
H A Dsqlite3ext.h140 int (*step)(sqlite3_stmt*); member
387 #define sqlite3_step sqlite3_api->step
/PHP-5.4/ext/standard/tests/file/windows_acls/
H A Dcommon.inc111 returns false. If the $perm_entry contains 'N' skip this step.
/PHP-5.4/ext/
H A Dext_skel296 step 6 confirms that your module is compiled into PHP. Then, start writing
/PHP-5.4/
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.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-5.4/main/streams/
H A Dstreams.c1435 int step = CHUNK_SIZE; in _php_stream_copy_to_mem() local
1473 max_len = ssbuf.sb.st_size + step; in _php_stream_copy_to_mem()
1475 max_len = step; in _php_stream_copy_to_mem()
1483 *buf = perealloc_rel_orig(*buf, max_len + step, persistent); in _php_stream_copy_to_mem()
1484 max_len += step; in _php_stream_copy_to_mem()
/PHP-5.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-5.4/sapi/nsapi/
H A Dnsapi-readme.txt11 probably skip this step. The start script is located in:
/PHP-5.4/ext/phar/
H A DTODO79 would need to be performed in an installation step, phar would not attempt
/PHP-5.4/win32/
H A Dinstall.txt406 The next step is to set up a valid configuration file for PHP, php.ini.
433 follow the next step. Set the doc_root to point to your web servers
451 PHP is now setup on your system. The next step is to choose a web
517 step as it provides crucial information for installing PHP on
580 (and should) skip this step. Under ISAPI Filters, add a new ISAPI
853 shellcgi directory and remove it just after (this step creates 5
/PHP-5.4/ext/mbstring/libmbfl/
H A DLICENSE48 We protect your rights with a two-step method: (1) we copyright the
/PHP-5.4/Zend/
H A DZEND_CHANGES1136 (supports breakpoints, expression evaluation, step-in/over,
/PHP-5.4/ext/pcre/pcrelib/
H A DChangeLog1075 passed to ld, causing the link step to fail if they are not.
3296 harder and harder to keep it in step with the real compile phase, and there
4546 linking step for the pcreposix library.

Completed in 141 milliseconds

12