Home
last modified time | relevance | path

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

12

/PHP-7.4/
H A DUPGRADING.INTERNALS288 PHP build system at the configure step and shouldn't be used anymore:
307 --enable-option-checking=fatal option can be used in the configure step
/PHP-7.4/Zend/tests/generators/
H A Dxrange.phpt6 function xrange($start, $end, $step = 1) {
7 for ($i = $start; $i <= $end; $i += $step) {
/PHP-7.4/Zend/
H A Dzend_hash.c604 ZEND_API void ZEND_FASTCALL zend_hash_iterators_advance(HashTable *ht, HashPosition step) in zend_hash_iterators_advance() argument
611 iter->pos += step; in zend_hash_iterators_advance()
H A Dzend_hash.h316 ZEND_API void ZEND_FASTCALL zend_hash_iterators_advance(HashTable *ht, HashPosition step);
/PHP-7.4/build/
H A Dlibtool.m41331 # Ok, now we have the path, separated by spaces, we can step through it
/PHP-7.4/docs/
H A Dmailinglist-rules.md60 2. Consider taking a step back from a very active thread now and then. Maybe
H A Drelease-process.md166 2. Skip this step for non stable releases after GA of minor or major versions
/PHP-7.4/ext/bcmath/libbcmath/
H A DLICENSE49 We protect your rights with a two-step method: (1) we copyright the
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic4917 #>>12 leshort x \b, sequence step %u
17329 0 lelong 0x0ff0a55a Intel serial flash for ICH/PCH ROM <= 5 or 3400 series A-step
H A Dmagic私はガラスを食べられます4917 #>>12 leshort x \b, sequence step %u
17329 0 lelong 0x0ff0a55a Intel serial flash for ICH/PCH ROM <= 5 or 3400 series A-step
/PHP-7.4/ext/gd/tests/
H A Dimagegammacorrect_variation2.phpt2 Apply imagegammacorrect() to a step wedge
/PHP-7.4/ext/ldap/tests/
H A DREADME.md57 The next step is to go into the PHP-Source-directory. Configure and make the
/PHP-7.4/ext/mbstring/libmbfl/
H A DLICENSE48 We protect your rights with a two-step method: (1) we copyright the
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_simd_inc.h107 int step, sljit_s32 dst_ind, sljit_s32 cmp1_ind, sljit_s32 cmp2_ind, sljit_s32 tmp_ind) in fast_forward_char_pair_sse2_compare() argument
113 SLJIT_ASSERT(step >= 0 && step <= 3); in fast_forward_char_pair_sse2_compare()
117 if (step == 0) in fast_forward_char_pair_sse2_compare()
131 if (step != 2) in fast_forward_char_pair_sse2_compare()
143 switch (step) in fast_forward_char_pair_sse2_compare()
/PHP-7.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-7.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-7.4/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h39 zval func, step, fini; member
H A Dsqlite_driver.c121 if (!Z_ISUNDEF(func->step)) { in pdo_sqlite_cleanup_callbacks()
122 zval_ptr_dtor(&func->step); in pdo_sqlite_cleanup_callbacks()
467 do_callback(&func->astep, &func->step, argc, argv, context, 1); in php_sqlite3_func_step_callback()
638 ZVAL_COPY(&func->step, step_callback); in PHP_METHOD()
/PHP-7.4/ext/snmp/
H A Dsnmp.c354 int step; member
704 if ((st & SNMP_CMD_SET) && objid_query->count > objid_query->step) { in php_snmp_internal()
732 …for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query… in php_snmp_internal()
870 …SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer wi… in php_snmp_internal()
871 …uery->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->st… in php_snmp_internal()
872 objid_query->step /= 2; in php_snmp_internal()
1065 objid_query->step = objid_query->count; in php_snmp_parse_oid()
1470 objid_query.step = snmp_object->max_oids; in php_snmp()
/PHP-7.4/ext/sqlite3/
H A Dphp_sqlite3_structs.h57 zval func, step, fini; member
H A Dsqlite3.c906 sqlite3_do_callback(&func->astep, &func->step, argc, argv, context, 1); in php_sqlite3_callback_step()
1060 ZVAL_COPY(&func->step, step_callback); in PHP_METHOD()
2357 if (!Z_ISUNDEF(func->step)) { in php_sqlite3_object_free_storage()
2358 zval_ptr_dtor(&func->step); in php_sqlite3_object_free_storage()
/PHP-7.4/ext/standard/
H A Darray.c2734 double __calc_size = ((start - end) / step) + 1; \
2761 double step = 1.0; local
2785 step = zval_get_double(zstep);
2788 if (step < 0.0) {
2789 step *= -1;
2797 zend_long lstep = (zend_long) step;
2862 if (low - high < step || step <= 0) {
2876 if (high - low < step || step <= 0) {
2903 if (step <= 0) {
2908 lstep = (zend_ulong)step;
[all …]
H A Dbasic_functions.c343 ZEND_ARG_INFO(0, step)
/PHP-7.4/ext/standard/tests/array/
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 --
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) ) --";
36 foreach( $step_arr as $step ) {
37 var_dump( range( 1, 5, $step ) );
45 -- Testing ( (low < high) && (step = 0) ) --
46 Warning: range(): step exceeds the specified range in %s on line %d
53 -- Testing ( (low > high) && (step = 0) ) --
61 -- Testing ( (low < high) && (high-low < step) ) --
[all …]

Completed in 249 milliseconds

12