| /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...] |
| 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_3/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_3/ext/sqlite/libsqlite/src/ |
| H A D | build.c | 1435 /* Link the foreign key to the table as the last step. 1678 ** step can be skipped.
|
| /PHP_5_3/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_3/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_3/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_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
|
| H A D | sqlite3.c | 838 sqlite3_do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC); 958 /* {{{ proto bool SQLite3::createAggregate(string name, mixed step, mixed final [, int argcount]) 1000 MAKE_STD_ZVAL(func->step); 1001 MAKE_COPY_ZVAL(&step_callback, func->step); 2036 if (func->step) { 2037 zval_ptr_dtor(&func->step);
|
| /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...] |
| H A D | basic_functions.c | 357 ZEND_ARG_INFO(0, step)
|
| /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;
|