Home
last modified time | relevance | path

Searched refs:last (Results 251 – 275 of 310) sorted by relevance

1...<<111213

/PHP-7.1/
H A DREADME.RELEASE_PROCESS59 1. Check windows snapshot builder logs (http://windows.php.net/downloads/snaps/ the last revision)
193 This is to fetch the last commit id from php-distributions.git and commit this
194 last commit id to web/php.git, then, mirrors will now sync
/PHP-7.1/Zend/RFCs/
H A D002.txt67 A namespace may have a name containing a ":", it is always the last
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_bp.c492 if (op_array->last <= brake->opline_num) { in phpdbg_resolve_op_array_break()
494 …%d oplines in function %s (breaking at opline %ld impossible)", op_array->last, brake->func_name, … in phpdbg_resolve_op_array_break()
496 …nly %d oplines in file %s (breaking at opline %ld impossible)", op_array->last, brake->class_name,… in phpdbg_resolve_op_array_break()
498 … oplines in method %s::%s (breaking at opline %ld impossible)", op_array->last, brake->class_name,… in phpdbg_resolve_op_array_break()
H A Dphpdbg_watch.c609 hti->last = hti->ht->arData + pos;
610 hti->last_str = hti->last->key;
611 hti->last_idx = hti->last->h;
H A Dphpdbg_prompt.c678 } while (++opline < op_array->opcodes + op_array->last); in phpdbg_skip_line_helper()
721 } while (++opline < op_array->opcodes + op_array->last); in phpdbg_seek_to_end()
1182 phpdbg_writeln("info", "ops=\"%d\"", "Opcodes %d", PHPDBG_G(ops)->last); in PHPDBG_COMMAND()
H A Dphpdbg.c499 zend_op *end = op_array->opcodes + op_array->last; in phpdbg_oplog_fill_executable()
506 …if (op_array->last >= 1 && (((end - 1)->opcode == ZEND_RETURN || (end - 1)->opcode == ZEND_RETURN_… in phpdbg_oplog_fill_executable()
507 …&& ((op_array->last > 1 && ((end - 2)->opcode == ZEND_RETURN || (end - 2)->opcode == ZEND_RETURN_B… in phpdbg_oplog_fill_executable()
/PHP-7.1/sapi/fpm/tests/
H A Dtester.inc117 * The last response for the request call
828 $port = ($this->ports['last'] ?? 9000 + PHP_INT_SIZE - 1) + 1;
829 $this->ports['values'][$pool] = $this->ports['last'] = $port;
/PHP-7.1/ext/pcre/pcrelib/testdata/
H A Dtestoutput23631 Callout 0: last capture = 1
3636 Callout 1: last capture = 1
3706 Callout 0: last capture = 1
3718 Callout 0: last capture = 1
3723 Callout 0: last capture = 1
3737 Callout 0: last capture = 2
3756 Callout 0: last capture = 3
3763 Callout 1: last capture = 1
3778 Callout 0: last capture = 1
3792 Callout 1: last capture = 1
[all …]
/PHP-7.1/ext/opcache/
H A Dzend_persist_calc.c197 ADD_DUP_SIZE(op_array->opcodes, sizeof(zend_op) * op_array->last); in zend_persist_op_array_calc_ex()
H A Dzend_accelerator_util_funcs.c507 && function2->op_array.last > 0) { in zend_accel_function_hash_copy()
551 && function2->op_array.last > 0) { in zend_accel_function_hash_copy_from_shm()
H A Dzend_persist.c434 zend_op *new_opcodes = zend_accel_memdup(op_array->opcodes, sizeof(zend_op) * op_array->last); in zend_persist_op_array_ex()
437 zend_op *end = new_opcodes + op_array->last; in zend_persist_op_array_ex()
/PHP-7.1/ext/standard/tests/array/
H A Darray_change_key_case.phpt7 or uppercase. The change depends on the last optional case parameter.
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_ssa.c983 ssa->ops = zend_arena_calloc(arena, op_array->last, sizeof(zend_ssa_op)); in zend_build_ssa()
984 memset(ssa->ops, 0xff, op_array->last * sizeof(zend_ssa_op)); in zend_build_ssa()
1027 for (i = op_array->last - 1; i >= 0; i--) { in zend_ssa_compute_use_def_chains()
H A Dzend_dump.c833 op_array->last, in zend_dump_op_array()
991 const zend_op *end = opline + op_array->last; in zend_dump_op_array()
H A Dpass1_5.c44 zend_op *end = opline + op_array->last; in zend_optimizer_pass1()
/PHP-7.1/Zend/
H A Dzend_operators.c2265 int last=0; /* Shut up the compiler warning */ in increment_string() local
2300 last=LOWER_CASE; in increment_string()
2309 last=UPPER_CASE; in increment_string()
2318 last = NUMERIC; in increment_string()
2332 switch (last) { in increment_string()
H A Dzend_vm_gen.php1323 $last = 0;
1325 while (++$last < $num) {
1328 $last = $num;
H A Dzend_compile.c650 zend_op *end = op_array->opcodes + op_array->last; in zend_start_live_range_ex()
733 zend_op *opline = &CG(active_op_array)->opcodes[CG(active_op_array)->last-1]; in zend_do_free()
1080 && old_function->op_array.last > 0) { in do_bind_function()
1179 zend_op *opline = &CG(active_op_array)->opcodes[CG(active_op_array)->last-1]; in zend_do_early_binding()
2195 …if (CG(active_op_array)->last && CG(active_op_array)->opcodes[CG(active_op_array)->last - 1].opcod… in zend_emit_tick()
6378 uint32_t num = CG(active_op_array)->last; in zend_compile_namespace()
7318 zend_ast *last = CG(ast); in zend_compile_const() local
7320 while (last->kind == ZEND_AST_STMT_LIST) { in zend_compile_const()
7321 zend_ast_list *list = zend_ast_get_list(last); in zend_compile_const()
7322 last = list->child[list->children-1]; in zend_compile_const()
[all …]
/PHP-7.1/ext/standard/tests/strings/
H A Dexplode1.phpt12 elements with the last element containing the rest of string.
/PHP-7.1/ext/phar/
H A Dphar_internal.h484 char *tsrm_strtok_r(char *s, const char *delim, char **last);
/PHP-7.1/ext/date/lib/
H A Dparse_date.re265 { "last", 0, -1 },
933 lastdayof = 'last day of';
955 reltexttext = 'next'|'last'|'previous'|'this';
1084 /* skip "last day of" or "first day of" */
1132 } else { /* last */
1635 /* to handle the format weekday + last/this/next week */
/PHP-7.1/win32/build/
H A Dconfutils.js1954 var i, dir, bd, last;
1960 last = null;
1968 if (bd == last) {
1971 last = bd;
/PHP-7.1/ext/oci8/tests/
H A Dbug51291_1.phpt2 Bug #51291 (oci_error() doesn't report last error when called two times)
/PHP-7.1/main/
H A Dmain.c295 char *last = NULL; in php_binary_init() local
299 search_dir = php_strtok_r(path, ":", &last); in php_binary_init()
307 search_dir = php_strtok_r(NULL, ":", &last); in php_binary_init()
/PHP-7.1/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct.phpt78 // last host specification should be the one used

Completed in 456 milliseconds

1...<<111213