Searched defs:step (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/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...] |
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3ext.h | 129 int (*step)(sqlite3_stmt*); member in struct:sqlite3_api_routines 332 #define sqlite3_step sqlite3_api->step
|
| /PHP_TRUNK/ext/pdo_sqlite/ |
| H A D | php_pdo_sqlite_int.h | 41 zval *func, *step, *fini; member in struct:pdo_sqlite_func
|
| /PHP_TRUNK/ext/sqlite3/ |
| H A D | php_sqlite3_structs.h | 61 zval *func, *step, *fini; member in struct:_php_sqlite3_func
|
| /PHP_TRUNK/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_TRUNK/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;
|
| /PHP_TRUNK/ext/standard/ |
| 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...] |
Completed in 18 milliseconds