Searched defs:step (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_3/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_5_3/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_5_3/ext/pdo_sqlite/ |
| H A D | php_pdo_sqlite_int.h | 41 zval *func, *step, *fini; member in struct:pdo_sqlite_func
|
| /PHP_5_3/ext/sqlite/ |
| H A D | sqlite.c | 162 zval *step; member in struct:php_sqlite_agg_functions 648 if (funcs->step) { 649 zval_ptr_dtor(&funcs->step); 650 funcs->step = NULL; 888 funcs->step, 933 /* {{{ callback for sqlite_create_aggregate: step function */ 980 funcs->step, 3235 zval *step, zval *fini, struct php_sqlite_agg_functions **funcs) 3251 if (alloc_funcs->step) { 3252 zval_ptr_dtor(&alloc_funcs->step); 3233 prep_callback_struct(struct php_sqlite_db *db, int is_agg, char *funcname, zval *step, zval *fini, struct php_sqlite_agg_functions **funcs) argument [all...] |
| /PHP_5_3/ext/sqlite3/ |
| H A D | php_sqlite3_structs.h | 61 zval *func, *step, *fini; member in struct:_php_sqlite3_func
|
| /PHP_5_3/ext/standard/ |
| H A D | array.c | 1616 /* {{{ proto array range(mixed low, mixed high[, int step]) 1622 double step = 1.0; local 1636 step = Z_DVAL_P(zstep); 1638 /* We only want positive step values. */ 1639 if (step < 0.0) { 1640 step *= -1; 1651 long lstep = (long) step; 1704 if (low - high < step || step <= 0) { 1709 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { [all...] |
| /PHP_5_3/main/streams/ |
| H A D | streams.c | 839 * we can also avoid that costly step and simply return that data. 1355 int step = CHUNK_SIZE; local 1390 * by a downsize of the buffer, overestimate by the step size (which is 1393 max_len = ssbuf.sb.st_size + step; 1395 max_len = step; 1403 *buf = perealloc_rel_orig(*buf, max_len + step, persistent); 1404 max_len += step;
|
Completed in 20 milliseconds