Home
last modified time | relevance | path

Searched refs:last (Results 176 – 200 of 239) sorted by relevance

12345678910

/PHP-8.2/Zend/Optimizer/
H A Dpass1.c57 zend_op *end = opline + op_array->last; in zend_optimizer_pass1()
H A Ddfa_pass.c125 shiftlist = (uint32_t *)do_alloca(sizeof(uint32_t) * op_array->last, use_heap); in zend_ssa_remove_nops()
126 memset(shiftlist, 0, sizeof(uint32_t) * op_array->last); in zend_ssa_remove_nops()
193 if (target != op_array->last) { in zend_ssa_remove_nops()
195 for (i = target; i < op_array->last; i++) { in zend_ssa_remove_nops()
208 for (i = 0; i < op_array->last; i++) { in zend_ssa_remove_nops()
252 op_array->last = target; in zend_ssa_remove_nops()
H A Dcompact_literals.c175 end = opline + op_array->last; in zend_optimizer_compact_literals()
491 end = opline + op_array->last; in zend_optimizer_compact_literals()
/PHP-8.2/ext/mbstring/tests/
H A Dmb_decode_mimeheader_variation4.phpt85 // passed the last buffer of wchars without passing 'end' flag, then called one more
H A Dutf7imap_encoding.phpt176 /* Mess up the padding by replacing the last Base64 character with ',',
177 * which represents 63 (a number with a 1 in the last bit) */
H A Dcp51932_encoding.phpt54 * In most cases, the one which we primarily use appears last in the table,
/PHP-8.2/ext/dom/
H A Ddom_iterators.c78 ret->last = NULL; in create_notation()
H A Dhtml5_parser.c183 lxml_attr->children = lxml_attr->last = lxml_text; in lexbor_libxml2_bridge_convert()
/PHP-8.2/ext/dom/lexbor/lexbor/html/
H A Dtokenizer.c315 tkz->last = end; in lxb_html_tokenizer_chunk()
/PHP-8.2/ext/fileinfo/libmagic/
H A Dsoftmagic.c1349 const char *last; /* end of search region */ in mcopy() local
1374 end = last = RCAST(const char *, s) + bytecnt + offset; in mcopy()
1386 last = b; in mcopy()
1389 last = end; in mcopy()
1392 ms->search.s_len = last - buf; in mcopy()
/PHP-8.2/sapi/phpdbg/
H A Dphpdbg_bp.c503 if (op_array->last <= brake->opline_num) { in phpdbg_resolve_op_array_break()
505 … function %s (breaking at opline "ZEND_ULONG_FMT" impossible)", op_array->last, brake->func_name, … in phpdbg_resolve_op_array_break()
507 …s in file %s (breaking at opline "ZEND_ULONG_FMT" impossible)", op_array->last, brake->class_name,… in phpdbg_resolve_op_array_break()
509 …ethod %s::%s (breaking at opline "ZEND_ULONG_FMT" impossible)", op_array->last, brake->class_name,… in phpdbg_resolve_op_array_break()
H A Dphpdbg.c446 zend_op *end = op_array->opcodes + op_array->last; in phpdbg_oplog_fill_executable()
453 …if (op_array->last >= 1 && (((end - 1)->opcode == ZEND_RETURN || (end - 1)->opcode == ZEND_RETURN_… in phpdbg_oplog_fill_executable()
454 …&& ((op_array->last > 1 && ((end - 2)->opcode == ZEND_RETURN || (end - 2)->opcode == ZEND_RETURN_B… in phpdbg_oplog_fill_executable()
H A Dphpdbg_prompt.c617 } while (++opline < op_array->opcodes + op_array->last); in phpdbg_skip_line_helper()
660 } while (++opline < op_array->opcodes + op_array->last); in phpdbg_seek_to_end()
1112 phpdbg_writeln("Opcodes %d", PHPDBG_G(ops)->last); in PHPDBG_COMMAND()
/PHP-8.2/
H A DNEWS179 <<< NOTE: Insert NEWS from last stable release here prior to actual release! >>>
H A D.gitignore56 # Helper(s) generated by *nix build system to save the last configure command
/PHP-8.2/Zend/
H A Dzend_execute.c3981 static zend_always_inline void zend_init_cvs(uint32_t first, uint32_t last EXECUTE_DATA_DC) in zend_init_cvs()
3983 if (EXPECTED(first < last)) { in zend_init_cvs()
3984 uint32_t count = last - first; in zend_init_cvs()
4510 zend_op *last = EX(func)->op_array.opcodes + op_num; in cleanup_live_vars() local
4511 while ((last->opcode != ZEND_ROPE_ADD && last->opcode != ZEND_ROPE_INIT) in cleanup_live_vars()
4512 || last->result.var != var_num) { in cleanup_live_vars()
4513 ZEND_ASSERT(last >= EX(func)->op_array.opcodes); in cleanup_live_vars()
4514 last--; in cleanup_live_vars()
4516 if (last->opcode == ZEND_ROPE_INIT) { in cleanup_live_vars()
4519 int j = last->extended_value; in cleanup_live_vars()
H A Dzend_vm_gen.php1522 $last = 0;
1524 while (++$last < $num) {
1527 $last = $num;
1530 while ($last++ < 255) {
/PHP-8.2/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.c1146 el->list->last = NULL;
1211 el->list->last = NULL;
/PHP-8.2/ext/hash/tests/
H A Dcrc32.phpt70 echo hash('crc32c', 'He who has a shady past knows that nice guys finish last.'), "\n";
/PHP-8.2/ext/ffi/
H A Dffi_parser.c269 …c int parse_enumerator(int sym, zend_ffi_dcl *enum_dcl, int64_t *min, int64_t *max, int64_t *last);
2514 int64_t min = 0, max = 0, last = -1; in parse_enumerator_list() local
2515 sym = parse_enumerator(sym, enum_dcl, &min, &max, &last); in parse_enumerator_list()
2549 sym = parse_enumerator(sym, enum_dcl, &min, &max, &last); in parse_enumerator_list()
2557 … int parse_enumerator(int sym, zend_ffi_dcl *enum_dcl, int64_t *min, int64_t *max, int64_t *last) { in parse_enumerator() argument
2566 zend_ffi_add_enum_val(enum_dcl, name, name_len, &val, min, max, last); in parse_enumerator()
/PHP-8.2/ext/dba/tests/setup/
H A Dsetup_dba_tests.inc62 dba_insert("key5", "The last content string", $db_file);
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_vm_helpers.c417 trace_buffer[1].last = 0; \
422 trace_buffer[1].last = idx; \
/PHP-8.2/ext/dom/lexbor/lexbor/css/
H A Dproperty.h194 lxb_css_hanging_punctuation_type_t last; member
214 lxb_css_property_family_name_t *last; member
/PHP-8.2/ext/opcache/
H A Dzend_persist_calc.c254 ADD_SIZE(sizeof(zend_op) * op_array->last); in zend_persist_op_array_calc_ex()
/PHP-8.2/win32/build/
H A Dconfutils.js2058 var i, dir, bd, last;
2064 last = null;
2072 if (bd == last) {
2075 last = bd;

Completed in 151 milliseconds

12345678910