Home
last modified time | relevance | path

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

12345678910

/php-src/docs/source/core/data-structures/
H A Dzend_string.rst31 hack`_ in C. It is used to create structs with a flexible size, namely by allowing the last element
58 it may have been freed if you were its last user.
/php-src/ext/ffi/
H A Dphp_ffi.h219 …, const char *name, size_t name_len, zend_ffi_val *val, int64_t *min, int64_t *max, int64_t *last);
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-src/ext/mysqli/tests/
H A Dmysqli_insert_id.phpt66 between the second last insert and the lock, therefore don't stop just bail
/php-src/Zend/Optimizer/
H A Dscdf.c86 scdf->instr_worklist_len = zend_bitset_len(op_array->last); in scdf_init()
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-src/Zend/
H A DREADME.md131 At last you can debug the executor using the original `zend_vm_def.h` or the
H A Dzend_execute.c4026 static zend_always_inline void zend_init_cvs(uint32_t first, uint32_t last EXECUTE_DATA_DC) in zend_init_cvs()
4028 if (EXPECTED(first < last)) { in zend_init_cvs()
4029 uint32_t count = last - first; in zend_init_cvs()
4559 zend_op *last = EX(func)->op_array.opcodes + op_num; in cleanup_live_vars() local
4560 while ((last->opcode != ZEND_ROPE_ADD && last->opcode != ZEND_ROPE_INIT) in cleanup_live_vars()
4561 || last->result.var != var_num) { in cleanup_live_vars()
4562 ZEND_ASSERT(last >= EX(func)->op_array.opcodes); in cleanup_live_vars()
4563 last--; in cleanup_live_vars()
4565 if (last->opcode == ZEND_ROPE_INIT) { in cleanup_live_vars()
4568 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-src/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-src/ext/dom/lexbor/lexbor/html/
H A Dtokenizer.c315 tkz->last = end; in lxb_html_tokenizer_chunk()
/php-src/ext/dom/
H A Dphp_dom.h140 void dom_reconcile_ns_list(xmlDocPtr doc, xmlNodePtr nodep, xmlNodePtr last);
H A Dhtml5_parser.c199 lxml_attr->children = lxml_attr->last = lxml_text; in lexbor_libxml2_bridge_convert()
/php-src/ext/fileinfo/libmagic/
H A Dsoftmagic.c1353 const char *last; /* end of search region */ in mcopy() local
1378 end = last = RCAST(const char *, s) + bytecnt + offset; in mcopy()
1390 last = b; in mcopy()
1393 last = end; in mcopy()
1396 ms->search.s_len = last - buf; in mcopy()
/php-src/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-src/ext/zend_test/
H A Dobserver.c72 …EX(func)->op_array.opcodes && EX(opline) < EX(func)->op_array.opcodes + EX(func)->op_array.last) || in assert_observer_opline()
/php-src/
H A D.gitignore56 # Helper(s) generated by *nix build system to save the last configure command
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.c1166 el->list->last = NULL;
1231 el->list->last = NULL;
/php-src/ext/hash/tests/
H A Dcrc32.phpt70 echo hash('crc32c', 'He who has a shady past knows that nice guys finish last.'), "\n";

Completed in 133 milliseconds

12345678910