| /PHP_5_5/ext/ereg/regex/ |
| H A D | engine.c | 14 #define step sstep macro 25 #define step lstep macro 620 - fast - step through the string at top speed 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); 698 assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st)); 711 - slow - step through the string more deliberately 737 st = step( 812 step(g, start, stop, bef, ch, aft) function 1016 #undef step macro [all...] |
| H A D | engine.ih | 12 static states step(register struct re_guts *g, sopno start, sopno stop, register states bef, int ch, register states aft);
|
| /PHP_5_5/ext/ |
| H A D | ext_skel | 269 cannot yet be compiled without editing. Please consider this to be step 4.5 296 step 6 confirms that your module is compiled into PHP. Then, start writing
|
| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 3185 ** to step 2. Do this zero or more times. 5371 ** sorting step is required. 7820 ** implementation of an SQL aggregate step callback may not use the 9593 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */ 10942 * the first step of the trigger-program. 10976 Trigger *pTrig; /* The trigger that this step is a part of */ 15803 ** of the master chunk. This step usually works if step 1 fails. 15814 ** of the end of the master chunk. This step happens very 22655 ** It is not possible to lower the locking level one step a [all...] |
| H A D | sqlite3ext.h | 129 int (*step)(sqlite3_stmt*); member in struct:sqlite3_api_routines 332 #define sqlite3_step sqlite3_api->step
|
| /PHP_5_5/ext/standard/tests/file/windows_acls/ |
| H A D | common.inc | 111 returns false. If the $perm_entry contains 'N' skip this step.
|
| /PHP_5_5/ext/pdo_sqlite/ |
| H A D | php_pdo_sqlite_int.h | 41 zval *func, *step, *fini; member in struct:pdo_sqlite_func
|
| H A D | sqlite_driver.c | 124 if (func->step) { 125 zval_ptr_dtor(&func->step); 470 do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC); 586 /* {{{ bool SQLite::sqliteCreateAggregate(string name, mixed step, mixed fini [, int argcount]) 589 /* The step function should have the prototype: 590 mixed step(mixed $context, int $rownumber, $value [, $value2 [, ...]]) 593 the value that was previously returned from the step function; you should 599 $context will hold the return value from the very last call to the step function. 647 MAKE_STD_ZVAL(func->step); 648 MAKE_COPY_ZVAL(&step_callback, func->step); [all...] |
| /PHP_5_5/ext/sqlite3/ |
| H A D | php_sqlite3_structs.h | 61 zval *func, *step, *fini; member in struct:_php_sqlite3_func
|
| H A D | sqlite3.c | 846 sqlite3_do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC); 966 /* {{{ proto bool SQLite3::createAggregate(string name, mixed step, mixed final [, int argcount]) 1008 MAKE_STD_ZVAL(func->step); 1009 MAKE_COPY_ZVAL(&step_callback, func->step); 2048 if (func->step) { 2049 zval_ptr_dtor(&func->step);
|
| /PHP_5_5/main/streams/ |
| H A D | streams.c | 905 * we can also avoid that costly step and simply return that data. 1421 int step = CHUNK_SIZE; local 1456 * by a downsize of the buffer, overestimate by the step size (which is 1459 max_len = ssbuf.sb.st_size + step; 1461 max_len = step; 1469 *buf = perealloc_rel_orig(*buf, max_len + step, persistent); 1470 max_len += step;
|
| /PHP_5_5/ext/standard/ |
| H A D | basic_functions.c | 360 ZEND_ARG_INFO(0, step)
|
| H A D | array.c | 1587 /* {{{ proto array range(mixed low, mixed high[, int step]) 1593 double step = 1.0; local 1607 step = Z_DVAL_P(zstep); 1609 /* We only want positive step values. */ 1610 if (step < 0.0) { 1611 step *= -1; 1622 long lstep = (long) step; 1679 if (low - high < step || step <= 0) { 1684 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { [all...] |
| /PHP_5_5/ext/snmp/ |
| H A D | snmp.c | 378 int step; member in struct:objid_query 742 if ((st & SNMP_CMD_SET) && objid_query->count > objid_query->step) { 770 for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query->offset++, count++){ 904 if (st & (SNMP_CMD_GET | SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer will not fit into single packet */ 905 objid_query->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->step) : 0 ); 906 objid_query->step /= 2; 1113 objid_query->step = objid_query->count; 1527 objid_query.step = snmp_object->max_oids;
|