Home
last modified time | relevance | path

Searched refs:last (Results 76 – 100 of 310) sorted by relevance

12345678910>>...13

/PHP-7.1/Zend/
H A Dzend_opcode.c61 op_array->last = 0; in init_op_array()
453 uint32_t next_op_num = op_array->last++; in get_next_op()
470 return op_array->last; in get_next_op_number()
482 zend_op *opline = op_array->opcodes, *end=opline+op_array->last; in zend_update_extended_info()
569 if (CG(context).opcodes_size != op_array->last) { in pass_two()
570 op_array->opcodes = (zend_op *) erealloc(op_array->opcodes, sizeof(zend_op)*op_array->last); in pass_two()
571 CG(context).opcodes_size = op_array->last; in pass_two()
578 end = opline + op_array->last; in pass_two()
/PHP-7.1/ext/date/tests/
H A Dbug41599.phpt7 $start = new DateTime('2008-01-17 last Monday');
H A Ddate_period.phpt19 $di = DateInterval::createFromDateString( 'last thursday of next month' );
/PHP-7.1/ext/standard/tests/general_functions/
H A Dbug70249.phpt12 // ensure "flush()" is called last when there are multiple shutdown functions
H A Dbug48660.phpt2 Bug #48660 (parse_ini_*(): dollar sign as last character of value fails)
/PHP-7.1/ext/session/
H A Dmod_files.c375 const char *p, *last; in PS_OPEN_FUNC() local
391 last = save_path; in PS_OPEN_FUNC()
394 argv[argc++] = last; in PS_OPEN_FUNC()
395 last = ++p; in PS_OPEN_FUNC()
399 argv[argc++] = last; in PS_OPEN_FUNC()
/PHP-7.1/ext/mbstring/oniguruma/
H A Dst.c483 st_table_entry *ptr, *last, *tmp; local
488 last = 0;
505 last = ptr;
512 if (last == 0) {
516 last->next = ptr->next;
/PHP-7.1/tests/output/
H A Dob_flush_error_001.phpt6 …* Description: Flush (send) contents of the output buffer. The last buffer content is sent to next…
/PHP-7.1/ext/mbstring/tests/
H A Dmb_substr.phpt21 // Note: returns last character
/PHP-7.1/ext/posix/tests/
H A Dposix_get_last_error_error.phpt10 * Description: Retrieve the error number set by the last posix function which failed.
/PHP-7.1/Zend/tests/
H A Dobjects_024.phpt14 /* last */
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_call_graph.c86 zend_op *end = opline + op_array->last; in zend_analyze_calls()
93 call_stack = do_alloca((op_array->last / 2) * sizeof(zend_call_info*), use_heap); in zend_analyze_calls()
277 map = zend_arena_calloc(arena, sizeof(zend_call_info *), op_array->last); in zend_build_call_map()
H A Doptimize_func_calls.c153 zend_op *end = opline + op_array->last; in zend_optimize_func_calls()
158 if (op_array->last < 2) { in zend_optimize_func_calls()
163 call_stack = zend_arena_calloc(&ctx->arena, op_array->last / 2, sizeof(optimizer_call_info)); in zend_optimize_func_calls()
/PHP-7.1/ext/intl/
H A DERROR.CONVENTIONS4 :: The last error is always stored globally.
23 The internal PHP code can set the global last error with:
28 and by passing NULL as the first parameter. The last function is a combination
34 :: The last is ALSO stored in the object whose method call triggered the error,
/PHP-7.1/sapi/cli/
H A Dphp_cli_server.c156 php_cli_server_chunk *last; member
897 buffer->last = NULL; in php_cli_server_buffer_ctor()
902 php_cli_server_chunk *last; in php_cli_server_buffer_append() local
903 for (last = chunk; last->next; last = last->next); in php_cli_server_buffer_append()
904 if (!buffer->last) { in php_cli_server_buffer_append()
909 buffer->last = last; in php_cli_server_buffer_append()
914 php_cli_server_chunk *last; in php_cli_server_buffer_prepend() local
915 for (last = chunk; last->next; last = last->next); in php_cli_server_buffer_prepend()
916 last->next = buffer->first; in php_cli_server_buffer_prepend()
917 if (!buffer->last) { in php_cli_server_buffer_prepend()
[all …]
/PHP-7.1/ext/intl/grapheme/
H A Dgrapheme_util.h31 …en, char *needle, size_t needle_len, int32_t offset, int *puchar_pos, int f_ignore_case, int last);
/PHP-7.1/ext/pcre/pcrelib/testdata/
H A Dgrepinputx43 This is the last line of this file.
/PHP-7.1/ext/dba/tests/
H A Ddba004.phpt17 dba_insert("key5", "The last content string", $db_file);
H A Ddba_gdbm.phpt34 string(23) "The last content string"
H A Ddba_qdbm.phpt32 string(23) "The last content string"
H A Ddba005.phpt17 dba_insert("key5", "The last content string", $db_file);
/PHP-7.1/ext/standard/tests/array/
H A Dend_variation2.phpt6 * Description: Advances array argument's internal pointer to the last element and return it
/PHP-7.1/ext/pcre/tests/
H A Dpreg_last_error_error.phpt7 * Description: Returns the error code of the last PCRE regex execution
/PHP-7.1/ext/standard/tests/strings/
H A Dstrrchr_variation8.phpt6 * Description: Finds the last occurrence of a character in a string.
H A Dstrrpos_variation7.phpt6 * Description: Find position of last occurrence of 'needle' in 'haystack'.

Completed in 66 milliseconds

12345678910>>...13