Home
last modified time | relevance | path

Searched refs:step (Results 26 – 50 of 61) sorted by path

123

/php-src/ext/pdo_sqlite/
H A Dsqlite_driver_arginfo.h13 ZEND_ARG_TYPE_INFO(0, step, IS_CALLABLE, 0)
/php-src/ext/pdo_sqlite/tests/
H A Dgh13998.phpt7 $step = function () {
16 $db->sqliteCreateAggregate('S', $step, $finalize, 1);
H A Dpdo_sqlite_createaggregate_002.phpt23 PDO::sqliteCreateAggregate(): Argument #2 ($step) must be a valid callback, function "a" not found …
/php-src/ext/pdo_sqlite/tests/subclasses/
H A Dpdo_sqlite_createaggregate_002.phpt24 PdoSqlite::createAggregate(): Argument #2 ($step) must be a valid callback, function "a" not found …
H A Dpdo_sqlite_createaggregate_arg_error.phpt19 $db->createAggregate(null, [new TrampolineTest(), 'step'], null, 1);
25 $db->createAggregate(null, null, [new TrampolineTest(), 'step'], 1);
31 $db->createAggregate(null, [new TrampolineTest(), 'step'], [new TrampolineTest(), 'step'], 1);
43 $db->createAggregate('S', [new TrampolineTest(), 'step'], null, 1);
49 …$db->createAggregate('S', [new TrampolineTest(), 'step'], [new TrampolineTest(), 'finalize'], null…
60 PdoSqlite::createAggregate(): Argument #2 ($step) must be a valid callback, no array or string given
H A Dpdo_sqlite_createaggregate_trampoline.phpt30 var_dump($db->createAggregate('S', [new TrampolineTest(), 'step'], [new TrampolineTest(), 'finalize…
39 Trampoline for step
40 Trampoline for step
41 Trampoline for step
42 Trampoline for step
43 Trampoline for step
44 Trampoline for step
45 Trampoline for step
46 Trampoline for step
47 Trampoline for step
[all …]
/php-src/ext/random/
H A Dengine_pcgoneseq128xslrr64.c30 static inline void step(php_random_status_state_pcgoneseq128xslrr64 *s) in step() function
41 step(s); in php_random_pcgoneseq128xslrr64_seed128()
43 step(s); in php_random_pcgoneseq128xslrr64_seed128()
50 step(s); in generate()
/php-src/ext/snmp/
H A Dsnmp.c109 int step; member
412 if ((st & SNMP_CMD_SET) && objid_query->count > objid_query->step) { in php_snmp_internal()
439 …for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query… in php_snmp_internal()
575 …SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer wi… in php_snmp_internal()
576 …uery->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->st… in php_snmp_internal()
577 objid_query->step /= 2; in php_snmp_internal()
782 objid_query->step = objid_query->count; in php_snmp_parse_oid()
1268 objid_query.step = snmp_object->max_oids; in php_snmp()
/php-src/ext/sqlite3/
H A Dphp_sqlite3_structs.h51 zend_fcall_info_cache step; member
H A Dsqlite3.c886 sqlite3_do_callback(&func->step, argc, argv, context, 1); in php_sqlite3_callback_step()
1019 zend_fcc_dup(&func->step, &step_fcc); in PHP_METHOD()
2205 if (ZEND_FCC_INITIALIZED(func->step)) { in php_sqlite3_object_free_storage()
2206 zend_fcc_dtor(&func->step); in php_sqlite3_object_free_storage()
2258 php_sqlite3_gc_buffer_add_fcc(gc_buffer, &func->step); in php_sqlite3_get_gc()
/php-src/ext/sqlite3/tests/
H A Dsqlite3_trampoline_create_aggregate.phpt26 $step = [$o, 'step'];
56 Trampoline for step
57 Trampoline for step
58 Trampoline for step
59 Trampoline for step
60 Trampoline for step
61 Trampoline for step
62 Trampoline for step
63 Trampoline for step
64 Trampoline for step
[all …]
H A Dsqlite3_trampoline_create_aggregate_no_leak.phpt26 $step = [$o, 'step'];
29 var_dump($db->createAggregate('', $step, $finalize, 1));
32 var_dump($db->createAggregate(new stdClass(), $step, $finalize, new stdClass()));
37 var_dump($db->createAggregate('S', $step, $finalize, new stdClass()));
42 var_dump($db->createAggregate('S', $step, 'no_func', 1));
53 var_dump($db->createAggregate('S', $step, $finalize, 'not a number'));
63 var_dump($obj->createAggregate('S', $step, $finalize, 1));
68 var_dump($db->createAggregate('S', $step, $finalize, 1));
/php-src/ext/standard/
H A Darray.c2969 zend_long step = 1; local
2996 step = zend_dval_to_lval(step_double);
3001 step = Z_LVAL_P(user_step);
3003 if (step < 0) {
3005 step *= -1;
3007 step_double = (double) step;
3074 if (low - high < step) {
3084 if (((signed int)low - step) < 0) {
3093 if (high - low < step) {
3102 if (((signed int)low + step) > 255) {
[all …]
H A Dbasic_functions.stub.php1680 function range(string|int|float $start, string|int|float $end, int|float $step = 1): array {} argument
H A Dbasic_functions_arginfo.h186 ZEND_ARG_TYPE_MASK(0, step, MAY_BE_LONG|MAY_BE_DOUBLE, "1")
/php-src/ext/standard/tests/array/range/
H A Drange_bug70239_2.phpt12 The supplied range exceeds the maximum array size: start=0 end=%d step=1
H A Drange_bug70239_3.phpt12 The supplied range exceeds the maximum array size: start=-%d end=0 step=1
H A Drange_inputs_float_basic.phpt16 echo "\nPassing int step\n";
21 echo "\nPassing float step\n";
67 Passing int step
99 Passing float step
H A Drange_inputs_float_small_step_exhaustion.phpt17 The supplied range exceeds the maximum array size: start=0.0 end=100000000000.0 step=0.1
18 The supplied range exceeds the maximum array size: start=-%d end=%d step=1
H A Drange_inputs_int_basic.phpt16 echo "\nPassing int step\n";
21 echo "\nPassing float step\n";
83 Passing int step
115 Passing float step
H A Drange_inputs_int_with_float_step.phpt2 Test range() function with integer inputs and float step
H A Drange_inputs_string_basic.phpt17 echo "\n-- Testing basic string with step --\n";
142 -- Testing basic string with step --
H A Drange_inputs_string_digits_float_step.phpt2 Test range() function where boundary are string digits and step is a float
H A Drange_inputs_string_invalid.phpt19 echo "Fractional step cannot be used on character ranges\n";
20 var_dump( range("A", "H", 2.6) ); // Because step is fractional it tries to interpret inputs as flo…
78 Fractional step cannot be used on character ranges
80 Warning: range(): Argument #3 ($step) must be of type int when generating an array of characters, i…
H A Drange_inputs_string_numeric.phpt16 echo "\nPassing int step\n";
21 echo "\nPassing float step\n";
83 Passing int step
115 Passing float step

Completed in 110 milliseconds

123