Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 271) sorted by path

1234567891011

/PHP-7.4/
H A D.gitignore53 # Helper(s) generated by *nix build system to save the last configure command
H A DNEWS462 . Fixed bug #80376 (last day of the month causes runway cpu usage. (Derick)
991 . Fixed bug #79410 (system() swallows last chunk if it is exactly 4095 bytes
1064 . Fixed bug #79257 (Duplicate named groups (?J) prefer last alternative even
1939 . Fixed bug #78189 (file cache strips last character of uname hash). (cmb)
H A DUPGRADING334 . Added SQLite3::lastExtendedErrorCode() to fetch the last extended result
/PHP-7.4/TSRM/
H A DTSRM.c566 tsrm_tls_entry *last=NULL; in ts_free_thread() local
587 if (last) { in ts_free_thread()
588 last->next = thread_resources->next; in ts_free_thread()
597 last = thread_resources; in ts_free_thread()
/PHP-7.4/Zend/
H A DREADME.md132 `--without-old-executor`. At last you can debug executor using original
H A Dbench.php119 $last = $n-1;
120 print "$Y[$last]\n";
152 $last = $n-1;
153 print "$Y[$last]\n";
168 $last = $n-1;
169 print "$Y[0] $Y[$last]\n";
207 $last = "foo_".($n-1);
208 print "$hash1[$first] $hash1[$last] $hash2[$first] $hash2[$last]\n";
H A Dzend.c1765 ZEND_API void zend_map_ptr_extend(size_t last) in zend_map_ptr_extend() argument
1767 if (last > CG(map_ptr_last)) { in zend_map_ptr_extend()
1770 if (last >= CG(map_ptr_size)) { in zend_map_ptr_extend()
1776 CG(map_ptr_size) = ZEND_MM_ALIGNED_SIZE_EX(last, 4096); in zend_map_ptr_extend()
1783 memset(ptr, 0, (last - CG(map_ptr_last)) * sizeof(void*)); in zend_map_ptr_extend()
1784 CG(map_ptr_last) = last; in zend_map_ptr_extend()
H A Dzend_compile.c93 return CG(active_op_array)->last; in get_next_op_number()
99 uint32_t next_op_num = op_array->last++; in get_next_op()
1030 && old_function->op_array.last > 0) { in do_bind_function_error()
1151 zend_op *end = opline + op_array->last; in zend_build_delayed_early_binding_list()
1924 …if (CG(active_op_array)->last && CG(active_op_array)->opcodes[CG(active_op_array)->last - 1].opcod… in zend_emit_tick()
6846 uint32_t num = CG(active_op_array)->last; in zend_compile_namespace()
8009 zend_ast *last = CG(ast); in zend_compile_const() local
8011 while (last && last->kind == ZEND_AST_STMT_LIST) { in zend_compile_const()
8012 zend_ast_list *list = zend_ast_get_list(last); in zend_compile_const()
8016 last = list->child[list->children-1]; in zend_compile_const()
[all …]
H A Dzend_compile.h430 uint32_t last; /* number of opcodes */ member
H A Dzend_execute.c1457 EG(current_execute_data)->func->op_array.last; in zend_wrong_string_offset()
3581 static zend_always_inline void zend_init_cvs(uint32_t first, uint32_t last EXECUTE_DATA_DC) in zend_init_cvs()
3583 if (EXPECTED(first < last)) { in zend_init_cvs()
3584 uint32_t count = last - first; in zend_init_cvs()
3983 zend_op *last = EX(func)->op_array.opcodes + op_num; in cleanup_live_vars() local
3984 while ((last->opcode != ZEND_ROPE_ADD && last->opcode != ZEND_ROPE_INIT) in cleanup_live_vars()
3985 || last->result.var != var_num) { in cleanup_live_vars()
3986 ZEND_ASSERT(last >= EX(func)->op_array.opcodes); in cleanup_live_vars()
3987 last--; in cleanup_live_vars()
3989 if (last->opcode == ZEND_ROPE_INIT) { in cleanup_live_vars()
[all …]
H A Dzend_gc.c967 gc_root_buffer *current, *last; in gc_mark_roots() local
972 last = GC_IDX2PTR(GC_G(first_unused)); in gc_mark_roots()
973 while (current != last) { in gc_mark_roots()
1116 gc_root_buffer *last = GC_IDX2PTR(GC_G(first_unused)); in gc_scan_roots() local
1118 while (current != last) { in gc_scan_roots()
1293 gc_root_buffer *last = GC_IDX2PTR(GC_G(first_unused)); in gc_collect_roots() local
1296 while (current != last) { in gc_collect_roots()
1434 gc_root_buffer *current, *last; in zend_gc_collect_cycles() local
1591 last = GC_IDX2PTR(end); in zend_gc_collect_cycles()
1592 while (current != last) { in zend_gc_collect_cycles()
H A Dzend_inheritance.c620 zend_op *end = op + fptr->op_array.last; in zend_get_function_declaration()
H A Dzend_map_ptr.h83 ZEND_API void zend_map_ptr_extend(size_t last);
H A Dzend_opcode.c55 op_array->last = 0; in init_op_array()
509 zend_op *opline = op_array->opcodes, *end=opline+op_array->last; in zend_update_extended_stmts()
771 uint32_t opnum = op_array->last; in zend_calc_live_ranges()
901 if (CG(context).opcodes_size != op_array->last) { in pass_two()
902 op_array->opcodes = (zend_op *) erealloc(op_array->opcodes, sizeof(zend_op)*op_array->last); in pass_two()
903 CG(context).opcodes_size = op_array->last; in pass_two()
911 ZEND_MM_ALIGNED_SIZE_EX(sizeof(zend_op) * op_array->last, 16) + in pass_two()
914 memcpy(((char*)op_array->opcodes) + ZEND_MM_ALIGNED_SIZE_EX(sizeof(zend_op) * op_array->last, 16), in pass_two()
917 …zval*)(((char*)op_array->opcodes) + ZEND_MM_ALIGNED_SIZE_EX(sizeof(zend_op) * op_array->last, 16)); in pass_two()
919 CG(context).opcodes_size = op_array->last; in pass_two()
[all …]
H A Dzend_operators.c2376 int last=0; /* Shut up the compiler warning */ in increment_string() local
2406 last=LOWER_CASE; in increment_string()
2415 last=UPPER_CASE; in increment_string()
2424 last = NUMERIC; in increment_string()
2438 switch (last) { in increment_string()
H A Dzend_vm_gen.php1576 $last = 0;
1578 while (++$last < $num) {
1581 $last = $num;
H A Dzend_vm_trace_handlers.h29 static const char *last = NULL; in zend_vm_trace() local
35 if (EXPECTED(last)) { in zend_vm_trace()
37 memcpy(buf, last, last_len); in zend_vm_trace()
50 last = op; in zend_vm_trace()
/PHP-7.4/Zend/tests/
H A Dbug36513.phpt2 Bug #36513 (comment will be outputed in last line)
H A Dobjects_024.phpt14 /* last */
/PHP-7.4/Zend/tests/generators/
H A Dyield_closure.phpt2 Generator shouldn't crash if last yielded value is a closure
/PHP-7.4/Zend/tests/try/
H A Dtry_multicatch_004.phpt2 Catch last exception in the multicatch
/PHP-7.4/Zend/tests/variadic/
H A Donly_last_error.phpt2 Only the last argument can be variadic
10 Fatal error: Only the last parameter can be variadic in %s on line %d
/PHP-7.4/build/
H A Dlibtool.m4732 # Insert the option either (1) after the last *FLAGS variable, or
1145 # Insert the option either (1) after the last *FLAGS variable, or
4308 # The last name is the one that the linker finds with -lNAME.
H A Dphp.m42107 dnl This macro creates script file with given filename which includes the last
/PHP-7.4/docs/
H A Drelease-process.md81 the last revision.
260 This is to fetch the last commit id from php-distributions.git and commit
261 this last commit id to `web/php.git`, then, website will now sync.

Completed in 148 milliseconds

1234567891011