Home
last modified time | relevance | path

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

12

/PHP-5.3/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.3/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.3/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.3/ext/sqlite3/
H A Dphp_sqlite3_structs.h61 zval *func, *step, *fini; member
H A Dsqlite3.c838 sqlite3_do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC);
1000 MAKE_STD_ZVAL(func->step);
1001 MAKE_COPY_ZVAL(&step_callback, func->step);
2036 if (func->step) {
2037 zval_ptr_dtor(&func->step);
/PHP-5.3/ext/sqlite/
H A Dsqlite.c162 zval *step; member
648 if (funcs->step) { in ZEND_GET_MODULE()
649 zval_ptr_dtor(&funcs->step); in ZEND_GET_MODULE()
650 funcs->step = NULL; in ZEND_GET_MODULE()
888 funcs->step, in php_sqlite_function_callback()
980 funcs->step, in php_sqlite_agg_step_function_callback()
3251 if (alloc_funcs->step) { in prep_callback_struct()
3253 alloc_funcs->step = NULL; in prep_callback_struct()
3273 MAKE_STD_ZVAL(alloc_funcs->step); in prep_callback_struct()
3274 *(alloc_funcs->step) = *step; in prep_callback_struct()
[all …]
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3ext.h129 int (*step)(sqlite3_stmt*); member
332 #define sqlite3_step sqlite3_api->step
/PHP-5.3/ext/standard/
H A Darray.c1622 double step = 1.0; in PHP_FUNCTION() local
1636 step = Z_DVAL_P(zstep); in PHP_FUNCTION()
1639 if (step < 0.0) { in PHP_FUNCTION()
1640 step *= -1; in PHP_FUNCTION()
1651 long lstep = (long) step; in PHP_FUNCTION()
1704 if (low - high < step || step <= 0) { in PHP_FUNCTION()
1709 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { in PHP_FUNCTION()
1713 if (high - low < step || step <= 0) { in PHP_FUNCTION()
1718 for (value = low; value <= (high + DOUBLE_DRIFT_FIX); value = low + (++i * step)) { in PHP_FUNCTION()
1732 lstep = (long) step; in PHP_FUNCTION()
H A Dbasic_functions.c357 ZEND_ARG_INFO(0, step)
/PHP-5.3/ext/standard/tests/file/windows_acls/
H A Dcommon.inc111 returns false. If the $perm_entry contains 'N' skip this step.
/PHP-5.3/ext/
H A Dext_skel296 step 6 confirms that your module is compiled into PHP. Then, start writing
/PHP-5.3/
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.3/main/streams/
H A Dstreams.c1355 int step = CHUNK_SIZE; in _php_stream_copy_to_mem() local
1393 max_len = ssbuf.sb.st_size + step; in _php_stream_copy_to_mem()
1395 max_len = step; in _php_stream_copy_to_mem()
1403 *buf = perealloc_rel_orig(*buf, max_len + step, persistent); in _php_stream_copy_to_mem()
1404 max_len += step; in _php_stream_copy_to_mem()
/PHP-5.3/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.3/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.3/sapi/nsapi/
H A Dnsapi-readme.txt11 probably skip this step. The start script is located in:
/PHP-5.3/ext/phar/
H A DTODO79 would need to be performed in an installation step, phar would not attempt
/PHP-5.3/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.3/ext/mbstring/libmbfl/
H A DLICENSE48 We protect your rights with a two-step method: (1) we copyright the
/PHP-5.3/Zend/
H A DZEND_CHANGES1136 (supports breakpoints, expression evaluation, step-in/over,
/PHP-5.3/ext/pcre/pcrelib/
H A DChangeLog315 passed to ld, causing the link step to fail if they are not.
2535 harder and harder to keep it in step with the real compile phase, and there
3785 linking step for the pcreposix library.

Completed in 106 milliseconds

12