Home
last modified time | relevance | path

Searched refs:last (Results 51 – 75 of 271) sorted by last modified time

1234567891011

/PHP-7.4/ext/opcache/Optimizer/
H A Dcompact_literals.c139 end = opline + op_array->last; in zend_optimizer_compact_literals()
504 end = opline + op_array->last; in zend_optimizer_compact_literals()
H A Doptimize_func_calls.c162 zend_op *end = opline + op_array->last; in zend_optimize_func_calls()
167 if (op_array->last < 2) { in zend_optimize_func_calls()
172 call_stack = zend_arena_calloc(&ctx->arena, op_array->last / 2, sizeof(optimizer_call_info)); in zend_optimize_func_calls()
H A Dzend_call_graph.c90 zend_op *end = opline + op_array->last; in zend_analyze_calls()
97 call_stack = do_alloca((op_array->last / 2) * sizeof(zend_call_info*), use_heap); in zend_analyze_calls()
289 map = zend_arena_calloc(arena, sizeof(zend_call_info *), op_array->last); in zend_build_call_map()
H A Ddfa_pass.c167 shiftlist = (uint32_t *)do_alloca(sizeof(uint32_t) * op_array->last, use_heap); in zend_ssa_remove_nops()
168 memset(shiftlist, 0, sizeof(uint32_t) * op_array->last); in zend_ssa_remove_nops()
236 if (target != op_array->last) { in zend_ssa_remove_nops()
238 for (i = target; i < op_array->last; i++) { in zend_ssa_remove_nops()
251 for (i = 0; i < op_array->last; i++) { in zend_ssa_remove_nops()
306 op_array->last = target; in zend_ssa_remove_nops()
H A Dpass1_5.c42 zend_op *end = opline + op_array->last; in zend_optimizer_pass1()
/PHP-7.4/main/
H A Dreentrancy.c324 php_strtok_r(char *s, const char *delim, char **last) in php_strtok_r() argument
330 if (s == NULL && (s = *last) == NULL) in php_strtok_r()
350 *last = NULL; in php_strtok_r()
376 *last = s; in php_strtok_r()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_watch.c610 hti->last = hti->ht->arData + pos;
611 hti->last_str = hti->last->key;
612 hti->last_idx = hti->last->h;
H A Dphpdbg.c474 zend_op *end = op_array->opcodes + op_array->last; in phpdbg_oplog_fill_executable()
481 …if (op_array->last >= 1 && (((end - 1)->opcode == ZEND_RETURN || (end - 1)->opcode == ZEND_RETURN_… in phpdbg_oplog_fill_executable()
482 …&& ((op_array->last > 1 && ((end - 2)->opcode == ZEND_RETURN || (end - 2)->opcode == ZEND_RETURN_B… in phpdbg_oplog_fill_executable()
H A Dphpdbg_watch.h111 Bucket *last; member
H A Dphpdbg_bp.c506 if (op_array->last <= brake->opline_num) { in phpdbg_resolve_op_array_break()
508 …%d oplines in function %s (breaking at opline %ld impossible)", op_array->last, brake->func_name, … in phpdbg_resolve_op_array_break()
510 …nly %d oplines in file %s (breaking at opline %ld impossible)", op_array->last, brake->class_name,… in phpdbg_resolve_op_array_break()
512 … oplines in method %s::%s (breaking at opline %ld impossible)", op_array->last, brake->class_name,… in phpdbg_resolve_op_array_break()
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in205 ; last request cpu - the %cpu the last request consumed
209 ; last request memory - the max amount of memory the last request consumed
214 ; last request the process has served. Otherwise informations are related to
229 ; last request cpu: 0.00
230 ; last request memory: 0
/PHP-7.4/ext/ffi/
H A Dphp_ffi.h221 …, const char *name, size_t name_len, zend_ffi_val *val, int64_t *min, int64_t *max, int64_t *last);
/PHP-7.4/ext/standard/tests/misc/
H A Dbug79410.phpt2 Bug #79410 (system() swallows last chunk if it is exactly 4095 bytes without newline)
/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.
/PHP-7.4/ext/fileinfo/libmagic/
H A Dsoftmagic.c674 char *last; in mprint() local
677 last = str; in mprint()
678 while (*last) in mprint()
679 last++; in mprint()
680 --last; in mprint()
681 while (isspace(CAST(unsigned char, *last))) in mprint()
682 last--; in mprint()
683 *++last = '\0'; in mprint()
1348 last = b; in mcopy()
1351 last = end; in mcopy()
[all …]
/PHP-7.4/ext/opcache/tests/
H A Dbug78189.phpt2 Bug #78189 (file cache strips last character of uname hash)
/PHP-7.4/ext/dom/
H A Dnode.c481 xmlNode *nodep, *last = NULL; in dom_node_last_child_read() local
491 last = nodep->last; in dom_node_last_child_read()
494 if (!last) { in dom_node_last_child_read()
897 nodep->last = fragment->last; in _php_dom_insert_fragment()
921 fragment->last = NULL; in _php_dom_insert_fragment()
1047 parentp->last = child; in PHP_FUNCTION()
1049 child = parentp->last; in PHP_FUNCTION()
1052 parentp->last = new_child; in PHP_FUNCTION()
1295 nodep->last = child; in PHP_FUNCTION()
1297 child = nodep->last; in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/pcre/tests/
H A Dbug79257.phpt2 Bug #79257: Duplicate named groups (?J) prefer last alternative even if not matched
/PHP-7.4/Zend/
H A Dzend_vm_gen.php1576 $last = 0;
1578 while (++$last < $num) {
1581 $last = $num;
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 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";
/PHP-7.4/ext/mbstring/tests/
H A Dmb_str_split_utf8_utf16.phpt19 /* very first and very last utf-16 4-bytes characters */
/PHP-7.4/ext/opcache/
H A Dzend_persist.c389 …zend_op *new_opcodes = zend_shared_memdup_put(op_array->opcodes, sizeof(zend_op) * op_array->last); in zend_persist_op_array_ex()
391 zend_op *end = new_opcodes + op_array->last; in zend_persist_op_array_ex()
H A Dzend_accelerator_util_funcs.c452 && function2->op_array.last > 0) { in zend_accel_function_hash_copy()
496 && function2->op_array.last > 0) { in zend_accel_function_hash_copy_from_shm()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_structs.h56 void *last; member

Completed in 116 milliseconds

1234567891011