Home
last modified time | relevance | path

Searched refs:end (Results 51 – 75 of 677) sorted by relevance

12345678910>>...28

/PHP-7.4/ext/opcache/Optimizer/
H A Dnop_removal.c36 zend_op *end, *opline; in zend_optimizer_nop_removal() local
44 end = op_array->opcodes + op_array->last; in zend_optimizer_nop_removal()
45 for (opline = op_array->opcodes; opline < end; opline++) { in zend_optimizer_nop_removal()
77 end = op_array->opcodes + op_array->last; in zend_optimizer_nop_removal()
80 for (opline = op_array->opcodes; opline<end; opline++) { in zend_optimizer_nop_removal()
H A Dpass3.c56 zend_op *end = op_array->opcodes + op_array->last; in zend_optimizer_pass3() local
66 while (opline < end) { in zend_optimizer_pass3()
85 while (next_opline < end && next_opline->opcode == ZEND_NOP) { in zend_optimizer_pass3()
89 if (next_opline >= end || next_opline->opcode != ZEND_ASSIGN) { in zend_optimizer_pass3()
142 while (ZEND_OP1_JMP_ADDR(opline) < end in zend_optimizer_pass3()
156 while (ZEND_OP2_JMP_ADDR(opline) < end) { in zend_optimizer_pass3()
171 while (ZEND_OP2_JMP_ADDR(opline) < end) { in zend_optimizer_pass3()
234 while (ZEND_OP2_JMP_ADDR(opline) < end) { in zend_optimizer_pass3()
300 for(op = opline+1; op<end; op++) { in zend_optimizer_pass3()
381 while (ZEND_OP2_JMP_ADDR(opline) < end in zend_optimizer_pass3()
[all …]
H A Doptimize_temp_vars_5.c51 zend_op *opline, *end; in zend_optimize_temporary_variables() local
63 end = op_array->opcodes; in zend_optimize_temporary_variables()
67 while (opline >= end) { in zend_optimize_temporary_variables()
77 end = op_array->opcodes; in zend_optimize_temporary_variables()
80 while (opline >= end) { in zend_optimize_temporary_variables()
117 while (--curr >= end) { in zend_optimize_temporary_variables()
/PHP-7.4/ext/date/tests/
H A Dbug74639.phpt7 $end = new DateTime('2017-08-24 18:00:00');
8 $interval = $start->diff($end);
10 $period = new DatePeriod($start, $interval, $end);
H A Ddate_diff1.phpt8 $end = new DateTime('2010-11-06 18:38:28 EDT');
9 $int = $start->diff($end);
11 var_dump($end);
H A Dbug52480.phpt11 // number of days between the start and end dates. Otherwise, days will be FALSE.
17 $end = new DateTime('2017-03-31', new DateTimeZone($timezone));
19 if ($expectedDiff != (array) $start->diff($end)) {
/PHP-7.4/ext/oci8/tests/
H A Dimp_res_2.phpt30 end;",
39 end;",
48 end;"
57 $s = oci_parse($c, "begin imp_res_2_proc_a(); end;");
63 $s = oci_parse($c, "begin imp_res_2_proc_b(); end;");
69 $s = oci_parse($c, "begin imp_res_2_proc_c(); end;");
H A Dbind_boolean_1.phpt28 end;";
40 $sql = "begin :b := true; end;";
55 end if;
56 end;";
73 end if;
74 end;";
92 end;";
H A Dpecl_bug16842.phpt20 $s = oci_parse($c, 'begin raise NO_DATA_FOUND; end;');
28 $s = oci_parse($c, 'begin raise ZERO_DIVIDE; end;');
54 string(31) "begin raise NO_DATA_FOUND; end;"
71 string(29) "begin raise ZERO_DIVIDE; end;"
H A Dlob_031.phpt52 // Read past end
69 // Seek past end
73 // Seek past end
81 // Move 3 past the end
85 // Move 4 before the end
H A Dbug46994.phpt20 end bug46994_proc1;",
25 end bug46994_proc2;"
37 $s = oci_parse($c, "begin bug46994_proc1(:myclob); end;");
44 $s = oci_parse($c, "begin bug46994_proc2(:myclob); end;");
51 $s = oci_parse($c, "begin bug46994_proc1(:myclob); end;");
H A Ddb_op_1.phpt2 oci_set_db_operation: basic test for end-to-end tracing
29 // Test setting the "DB operation" used by Oracle DB for end-to-end application tracing
/PHP-7.4/Zend/
H A Dzend_opcode.c160 while (p != end) { in zend_cleanup_internal_class_data()
176 while (p != end) { in zend_cleanup_internal_class_data()
275 while (p != end) { in destroy_zend_class()
285 while (p != end) { in destroy_zend_class()
352 while (p != end) { in destroy_zend_class()
362 while (p != end) { in destroy_zend_class()
511 while (opline<end) { in zend_update_extended_stmts()
589 range->end = end; in emit_live_range_raw()
764 tmp = a->end; in swap_live_range()
765 a->end = b->end; in swap_live_range()
[all …]
/PHP-7.4/ext/date/lib/
H A Dparse_iso_intervals.re78 timelib_time *end;
108 char *begin, *end, *str;
123 end = *ptr;
222 current = s->end;
384 in.end->y = TIMELIB_UNSET;
385 in.end->d = TIMELIB_UNSET;
390 in.end->us = 0;
391 in.end->z = 0;
392 in.end->dst = 0;
393 in.end->is_localtime = 0;
[all …]
/PHP-7.4/ext/zlib/tests/
H A Dbug61443.phpt10 if(!headers_sent()) ini_set('zlib.output_compression', true); echo "end\n";
14 end
H A Dgzrewind_basic2.phpt14 // read to the end of the file
15 echo "read to the end of the file, then rewind\n";
28 read to the end of the file, then rewind
/PHP-7.4/Zend/tests/generators/
H A Dxrange.phpt6 function xrange($start, $end, $step = 1) {
7 for ($i = $start; $i <= $end; $i += $step) {
/PHP-7.4/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 (T_VARIABLE) or heredoc end (…
H A Dflexible-nowdoc-error7.phpt11 Parse error: syntax error, unexpected end of file, expecting variable (T_VARIABLE) or heredoc end (…
H A Dbug29104.phpt16 echo "function g - end\n";
26 function g - end
H A Drequire_parse_exception.phpt46 syntax error, unexpected end of file on line 2
47 syntax error, unexpected end of file on line 3
48 syntax error, unexpected end of file, expecting '(' on line 2
/PHP-7.4/ext/standard/tests/file/
H A Dfeof_basic.phpt8 * Description: Test for end-of-file on a file pointer
25 //feof is not set to true until you try to read past the end of file.
26 //so fgets will be called even if we are at the end of the file on
57 echo "*** testing feof after a seek to end ***\n";
61 echo "*** testing feof after a seek passed the end ***\n";
94 *** testing feof after a seek to end ***
96 *** testing feof after a seek passed the end ***
/PHP-7.4/ext/mbstring/ucgendat/
H A Ducgendat.php77 public $end; variable in Range
79 public function __construct(int $start, int $end) { argument
81 $this->end = $end;
142 if ($code === $lastRange->end + 1) {
143 $lastRange->end++;
169 if ($lastRange->end == -1) {
172 $lastRange->end = $range->end;
179 $lastRange->start, $lastRange->end,
180 $range->start, $range->end
184 if ($lastRange->end != -1) {
[all …]
/PHP-7.4/ext/standard/tests/array/
H A Dkey_basic.phpt25 end($array);
28 echo "\n-- Past end of the array --\n";
45 -- Past end of the array --

Completed in 42 milliseconds

12345678910>>...28