Home
last modified time | relevance | path

Searched refs:end (Results 101 – 125 of 737) sorted by relevance

12345678910>>...30

/php-src/ext/dom/lexbor/lexbor/css/syntax/
H A Dtokenizer.h24 const lxb_char_t *data, const lxb_char_t *end);
29 const lxb_char_t **end, void *ctx);
65 const lxb_char_t *end; member
91 const lxb_char_t **data, const lxb_char_t **end);
/php-src/ext/opcache/jit/ir/
H A Dir_ra.c128 ival->range.end = ival->end = end; in ir_new_live_range()
155 if (end > p->end) { in ir_add_live_range()
159 p->end = end; in ir_add_live_range()
162 p->end = next->end; in ir_add_live_range()
171 ival->end = p->end; in ir_add_live_range()
180 ival->end = end; in ir_add_live_range()
192 q->end = end; in ir_add_live_range()
206 q->end = p->end; in ir_add_live_range()
209 p->end = end; in ir_add_live_range()
239 ival->range.end = ival->end = end; in ir_add_fixed_live_range()
[all …]
/php-src/Zend/Optimizer/
H A Doptimize_temp_vars_5.c50 zend_op *opline, *end; in zend_optimize_temporary_variables() local
62 end = op_array->opcodes; in zend_optimize_temporary_variables()
66 while (opline >= end) { in zend_optimize_temporary_variables()
75 end = op_array->opcodes; in zend_optimize_temporary_variables()
78 while (opline >= end) { in zend_optimize_temporary_variables()
114 while (--curr >= end) { in zend_optimize_temporary_variables()
/php-src/ext/xml/tests/
H A Dxml_set_element_handler_errors.phpt28 echo 'Invalid end callable type true:', PHP_EOL;
41 echo 'Invalid end callable type int:', PHP_EOL;
54 echo 'Invalid end callable, no object set and string not callable:', PHP_EOL;
68 echo 'Invalid end callable, string non existent method on set object:', PHP_EOL;
82 Invalid end callable type true:
86 Invalid end callable type int:
90 Invalid end callable, no object set and string not callable:
94 Invalid end callable, string non existent method on set object:
/php-src/ext/opcache/
H A Dshared_alloc_mmap.c57 uintptr_t start, end, text_start = 0; in find_prefered_mmap_base() local
67 while (fgets(buffer, MAXPATHLEN, f) && sscanf(buffer, "%lx-%lx", &start, &end) == 2) { in find_prefered_mmap_base()
76 last_free_addr = ZEND_MM_ALIGNED_SIZE_EX(end + huge_page_size, huge_page_size); in find_prefered_mmap_base()
90 if ((uintptr_t)execute_ex < end) { in find_prefered_mmap_base()
93 if (end - last_candidate < UINT32_MAX) { in find_prefered_mmap_base()
112 last_free_addr = ZEND_MM_ALIGNED_SIZE_EX(end, huge_page_size); in find_prefered_mmap_base()
127 end = start + s; in find_prefered_mmap_base()
128 while (start < end) { in find_prefered_mmap_base()
/php-src/Zend/
H A Dzend_call_stack.c221 prev_end = end; in zend_call_stack_get_linux_proc_maps()
238 if (end - max_size < prev_end) { in zend_call_stack_get_linux_proc_maps()
239 max_size = prev_end - end; in zend_call_stack_get_linux_proc_maps()
242 stack->base = (void*)end; in zend_call_stack_get_linux_proc_maps()
605 char *start, *end; in zend_call_stack_get_netbsd_vm() local
627 end = start + len; in zend_call_stack_get_netbsd_vm()
629 while (start < end) { in zend_call_stack_get_netbsd_vm()
727 goto end; in zend_call_stack_get_solaris_proc_maps()
741 goto end; in zend_call_stack_get_solaris_proc_maps()
746 goto end; in zend_call_stack_get_solaris_proc_maps()
[all …]
H A Dzend_objects_API.c74 zend_object **end = objects->object_buckets + objects->top; in zend_objects_store_mark_destructed() local
83 } while (obj_ptr != end); in zend_objects_store_mark_destructed()
89 zend_object **obj_ptr, **end, *obj; in zend_objects_store_free_object_storage() local
97 end = objects->object_buckets + 1; in zend_objects_store_free_object_storage()
113 } while (obj_ptr != end); in zend_objects_store_free_object_storage()
125 } while (obj_ptr != end); in zend_objects_store_free_object_storage()
H A Dzend_language_scanner.l302 while ((*end >= 'a' && *end <= 'z') || (*end >= 'A' && *end <= 'Z') || *end == '_') { in zend_lex_tstring()
303 end++; in zend_lex_tstring()
917 char *end; in zend_scan_escape_string() local
945 if (s == end) { in zend_scan_escape_string()
951 while (s<end) { in zend_scan_escape_string()
954 if (s >= end) { in zend_scan_escape_string()
1184 nl = end; in strip_multiline_string_indentation()
2142 char *end;
2166 const char *end;
2511 if (s == end) {
[all …]
/php-src/ext/hash/murmur/
H A DPMurHash128.c256 const uint8_t *end; in PMurHash128x86_Process() local
271 end = ptr + (len & ~15); in PMurHash128x86_Process()
272 for( ; ptr < end ; ptr+=16) { in PMurHash128x86_Process()
289 end = ptr + (len & ~15); in PMurHash128x86_Process()
294 for( ; ptr < end ; ptr+=16) { in PMurHash128x86_Process()
322 for( ; ptr < end ; ptr+=16) { in PMurHash128x86_Process()
350 for( ; ptr < end ; ptr+=16) { in PMurHash128x86_Process()
535 const uint8_t *end; in PMurHash128x64_Process() local
550 end = ptr + (len & ~15); in PMurHash128x64_Process()
551 for( ; ptr < end ; ptr+=16) { in PMurHash128x64_Process()
[all …]
/php-src/Zend/tests/generators/
H A Dxrange.phpt6 function xrange($start, $end, $step = 1) {
7 for ($i = $start; $i <= $end; $i += $step) {
/php-src/ext/date/tests/
H A Ddate_period_include_end.phpt7 $end = new DateTime('2010-06-10');
10 foreach (new DatePeriod($start, $interval, $end, DatePeriod::INCLUDE_END_DATE) as $day) {
H A DDatePeriod_no_advance_on_valid.phpt7 $end = DateTime::createFromFormat('Y-m-d', '2022-01-04');
9 $period = new DatePeriod($start, $interval, $end);
23 $period = new DatePeriod($start, $interval, $end, DatePeriod::EXCLUDE_START_DATE);
H A Ddate_period_exclude_start_and_include_end.phpt7 $end = new DateTime('2010-06-10');
10 $dp = new DatePeriod($start, $interval, $end, DatePeriod::EXCLUDE_START_DATE | DatePeriod::INCLUDE_…
/php-src/Zend/tests/
H A Dflexible-heredoc-error8.phpt6 <<<end
8 end);
H A Dflexible-heredoc-error7.phpt11 Parse error: syntax error, unexpected end of file, expecting variable or heredoc end or "${" or "{$…
H A Dflexible-nowdoc-error7.phpt11 Parse error: syntax error, unexpected end of file, expecting variable or heredoc end or "${" or "{$…
/php-src/ext/standard/tests/strings/
H A Dchunk_split.phpt8 echo chunk_split("test", 10, "|end") . "\n";
21 test|end
/php-src/ext/dom/lexbor/lexbor/encoding/
H A Dbase.h175 const lxb_codepoint_t *end);
179 const lxb_char_t **data, const lxb_char_t *end);
183 const lxb_char_t *end, lxb_codepoint_t cp);
187 const lxb_char_t **data, const lxb_char_t *end);
/php-src/ext/dom/lexbor/lexbor/html/
H A Dencoding.h21 const lxb_char_t *end; member
41 const lxb_char_t *data, const lxb_char_t *end);
44 lxb_html_encoding_content(const lxb_char_t *data, const lxb_char_t *end,
H A Dtokenizer.c93 tkz->end = tkz->start + LXB_HTML_TKZ_TEMP_SIZE; in lxb_html_tokenizer_init()
154 tkz_to->end = tkz_from->end; in lxb_html_tokenizer_inherit()
311 const lxb_char_t *end = data + size; in lxb_html_tokenizer_chunk() local
315 tkz->last = end; in lxb_html_tokenizer_chunk()
317 while (data < end) { in lxb_html_tokenizer_chunk()
319 const lxb_char_t *new_data = tkz->state(tkz, data, end); in lxb_html_tokenizer_chunk()
346 const lxb_char_t *data, *end; in lxb_html_tokenizer_end() local
352 end = lxb_html_tokenizer_eof + 1UL; in lxb_html_tokenizer_end()
356 while (tkz->state(tkz, data, end) < end) { in lxb_html_tokenizer_end()
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_auto_possess.c330 PCRE2_SPTR end; in get_chr_property_list() local
482 switch(*end) in get_chr_property_list()
491 end++; in get_chr_property_list()
497 end++; in get_chr_property_list()
504 end += 1 + 2 * IMM2_SIZE; in get_chr_property_list()
508 return end; in get_chr_property_list()
1141 PCRE2_SPTR end; in PRIV() local
1157 end = (c <= OP_MINUPTO) ? in PRIV()
1161 if (end != NULL && compare_opcodes(end, utf, ucp, cb, list, end, in PRIV()
1221 if (end != NULL && in PRIV()
[all …]
/php-src/ext/standard/tests/file/
H A Dfeof_basic.phpt19 //feof is not set to true until you try to read past the end of file.
20 //so fgets will be called even if we are at the end of the file on
51 echo "*** testing feof after a seek to end ***\n";
55 echo "*** testing feof after a seek passed the end ***\n";
92 *** testing feof after a seek to end ***
94 *** testing feof after a seek passed the end ***
/php-src/ext/standard/
H A Ddns.c443 if (cp + n > end) { \
826 uint8_t *cp = NULL, *end = NULL; in PHP_FUNCTION() local
987 end = answer.qb2 + n; in PHP_FUNCTION()
996 n = dn_skipname(cp, end); in PHP_FUNCTION()
1007 while (an-- && cp && cp < end) { in PHP_FUNCTION()
1020 while (ns-- > 0 && cp && cp < end) { in PHP_FUNCTION()
1032 while (ar-- > 0 && cp && cp < end) { in PHP_FUNCTION()
1058 uint8_t *cp, *end; in PHP_FUNCTION() local
1109 end = answer.qb2 + i; in PHP_FUNCTION()
1111 if ((i = dn_skipname(cp, end)) < 0 ) { in PHP_FUNCTION()
[all …]
/php-src/ext/phar/tests/zip/
H A Dcorrupt_002.phpt2 Phar: corrupted zip (no end of zip record)
14 phar error: end of central directory not found in zip-based phar "%snozipend.zip"
/php-src/tests/classes/
H A Dprivate_members.phpt15 echo __METHOD__ . "(end)\n";
36 echo __METHOD__ . "(end)\n";
69 base::__construct(end)
88 derived::__construct(end)

Completed in 62 milliseconds

12345678910>>...30