Home
last modified time | relevance | path

Searched refs:start (Results 26 – 50 of 649) sorted by relevance

12345678910>>...26

/PHP-8.2/ext/pcre/pcre2lib/sljit/
H A DsljitWXExecAllocator.c167 sljit_uw start = (sljit_uw)from; in sljit_update_wx_flags() local
171 SLJIT_ASSERT(start < end); in sljit_update_wx_flags()
173 start &= ~page_mask; in sljit_update_wx_flags()
176 mprotect((void*)start, end - start, prot); in sljit_update_wx_flags()
199 sljit_uw start = (sljit_uw)ptr - sizeof(sljit_uw); in sljit_free_exec() local
203 SLJIT_ASSERT(!(start & page_mask)); in sljit_free_exec()
205 VirtualFree((void*)start, 0, MEM_RELEASE); in sljit_free_exec()
212 sljit_uw start = (sljit_uw)from; in sljit_update_wx_flags() local
216 SLJIT_ASSERT(start < end); in sljit_update_wx_flags()
218 start &= ~page_mask; in sljit_update_wx_flags()
[all …]
/PHP-8.2/ext/date/tests/
H A DDatePeriod_properties1.phpt8 $start = new DateTime;
11 $period = new DatePeriod($start, $interval, $end);
19 echo "start: ";
20 var_dump($period->start == $start);
34 start: bool(true)
H A Dbug78055.phpt5 $start = new DateTime('2018-12-31 00:00:00');
10 $period = new DatePeriod($start, $interval, $recurrences, DatePeriod::EXCLUDE_START_DATE);
13 $period = new DatePeriod($start, $interval, $recurrences);
16 $period = new DatePeriod($start, $interval, $recurrences, DatePeriod::INCLUDE_END_DATE);
19 $period = new DatePeriod($start, $interval, $end);
22 $period = new DatePeriod($start, $interval, $end, DatePeriod::EXCLUDE_START_DATE);
H A Dbug52668.phpt7 $start = new DateTime('20101212');
9 $dp = new DatePeriod($start, $interval, 1);
13 echo $start->format('r'), "\n";
17 echo $start->format('r'), "\n\n";
H A Dexamine_diff.inc23 * @param string|DateTime $start_date the start date in YYYY-MM-DD format
37 $start = new DateTime($start_date);
39 $start = $start_date;
41 $start_date = $start->format('Y-m-d H:i:s T');
56 $result_interval = $start->diff($end, $absolute);
62 $result_interval = $start->diff($end, $absolute);
68 $start->add($expect_interval);
69 $result_end_date = $start->format('Y-m-d H:i:s T');
H A Ddate_period_unserialize2.phpt6 $start = new DateTime("2022-07-14 00:00:00", new DateTimeZone("UTC"));
9 $period = new DatePeriod($start, $interval, $end);
14 "start" => new DateTime,
/PHP-8.2/ext/date/lib/
H A Dastro.h61 #define civil_twilight(ts,lon,lat,start,end) \ argument
62 timelib_astro_rise_set_altitude( ts, lon, lat, -6.0, 0, start, end )
67 #define nautical_twilight(ts,lon,lat,start,end) \ argument
68 timelib_astro_rise_set_altitude( ts, lon, lat, -12.0, 0, start, end )
73 #define astronomical_twilight(ts,lon,lat,start,end) \ argument
74 timelib_astro_rise_set_altitude( ts, lon, lat, -18.0, 0, start, end )
/PHP-8.2/ext/phar/tests/cache_list/files/
H A Dfrontcontroller19.phar4 Phar::webPhar("test.phar", "/start/index.php");
11 ����������������������start/index.php9���!�H9���HٗN����������start/another.php>���!�H>���|
13 echo "start/index.php\n";
16 echo "start/another.php\n";
H A Dfrontcontroller19.phar.inc4 $a['start/index.php'] = '<?php
5 echo "start/index.php\n";
8 $a['start/another.php'] = '<?php
9 echo "start/another.php\n";
18 Phar::webPhar("test.phar", "/start/index.php");
/PHP-8.2/ext/phar/tests/files/
H A Dfrontcontroller19.phar4 Phar::webPhar("test.phar", "/start/index.php");
11 ����������������������start/index.php9���!�H9���HٗN����������start/another.php>���!�H>���|
13 echo "start/index.php\n";
16 echo "start/another.php\n";
H A Dfrontcontroller19.phar.inc4 $a['start/index.php'] = '<?php
5 echo "start/index.php\n";
8 $a['start/another.php'] = '<?php
9 echo "start/another.php\n";
18 Phar::webPhar("test.phar", "/start/index.php");
/PHP-8.2/ext/phar/tests/
H A Dfrontcontroller34.phpt9 REQUEST_URI=/frontcontroller34.php/start/index.php
10 PATH_INFO=/start/index.php
16 start/index.php
17 start/another.php
/PHP-8.2/ext/opcache/
H A Dshared_alloc_mmap.c57 uintptr_t start, end, text_start = 0; in find_prefered_mmap_base() local
74 uintptr_t start_base = start & ~(huge_page_size - 1); in find_prefered_mmap_base()
80 if ((uintptr_t)execute_ex >= start) { in find_prefered_mmap_base()
84 if (last_free_addr + requested_size <= start) { in find_prefered_mmap_base()
86 if (last_candidate + requested_size > start) { in find_prefered_mmap_base()
99 text_start = start; in find_prefered_mmap_base()
107 if (last_free_addr + requested_size <= start) { in find_prefered_mmap_base()
126 start = (uintptr_t)addr; in find_prefered_mmap_base()
127 end = start + s; in find_prefered_mmap_base()
128 while (start < end) { in find_prefered_mmap_base()
[all …]
/PHP-8.2/ext/phar/tests/cache_list/
H A Dfrontcontroller34.phpt10 REQUEST_URI=/frontcontroller34.php/start/index.php
11 PATH_INFO=/start/index.php
17 start/index.php
18 start/another.php
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_stdio.c177 int in_buf = 0, cmd_pos = 0, pos, start; local
227 start = 0;
238 for (pos = start; pos < in_buf; pos++) {
241 zlog_stream_str(log_stream, buf + start, pos - start);
243 start = pos + 1;
248 zlog_stream_str(log_stream, buf + start, pos - start);
250 start = pos + sizeof(FPM_STDIO_CMD_FLUSH);
251 pos = start - 1;
255 zlog_stream_str(log_stream, buf + start, pos - start);
261 if (start < pos) {
[all …]
/PHP-8.2/ext/zend_test/tests/
H A Dobserver_fiber_functions_03.phpt21 $notBailedOutFiber->start();
29 $fiber->start();
39 <!-- init Fiber::start() -->
40 <Fiber::start>
54 </Fiber::start>
57 <Fiber::start>
69 </Fiber::start>
/PHP-8.2/ext/mbstring/tests/
H A Dmb_strimwidth.phpt26 print "start=$start width=$width result=[";
32 function testStrimwidth($string, $start, $width, $encoding) {
228 start=0 width=0 result=[2e00 2e00 2e00] length=3 width=3
229 start=0 width=1 result=[2e00 2e00 2e00] length=3 width=3
243 start=9 width=5 result=[a4cf 2e 2e 2e] length=4 width=5
246 start=39 width=10 result=[] length=0 width=0
249 mb_strimwidth(): Argument #2 ($start) is out of range
250 mb_strimwidth(): Argument #2 ($start) is out of range
254 start=1 width=0 result=[2e 2e 2e] length=3 width=3
256 start=0 width=10 result=[3f 3f 3f] length=3 width=3
[all …]
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_oprofile.c26 const void *start, in zend_jit_oprofile_register() argument
30 op_write_native_code(op_agent, name, (uint64_t)(zend_uintptr_t)start, start, size); in zend_jit_oprofile_register()
/PHP-8.2/Zend/tests/fibers/
H A Dresume-previous-fiber.phpt13 $fiber2->start();
16 $fiber->start();
24 #2 %sresume-previous-fiber.php(%d): Fiber->start()
26 #4 %sresume-previous-fiber.php(%d): Fiber->start()
H A Dno-switch-force-close-finally.phpt2 Cannot start a new fiber in a finally block in a force-closed fiber
16 $fiber->start();
20 $fiber->start();
28 #0 %sno-switch-force-close-finally.php(%d): Fiber->start()
H A Dsignal-async.phpt18 echo "Fiber start\n";
24 $fiber->start();
28 Fiber start
35 #3 %ssignal-async.php(%d): Fiber->start()
H A Dsignal-dispatch.phpt16 echo "Fiber start\n";
29 $e = $fiber->start();
37 Fiber start
44 #4 %ssignal-dispatch.php(%d): Fiber->start()
/PHP-8.2/sapi/cli/tests/
H A D013.phpt18 var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");'`);
20 var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");' -E 'var_dump("end");'`);
27 string(18) "string(5) "start"
31 string(34) "string(5) "start"
/PHP-8.2/ext/session/tests/
H A Dsession_set_save_handler_class_015.phpt2 Test session_set_save_handler() : register session handler but don't start
15 echo "*** Testing session_set_save_handler() : register session handler but don't start ***\n";
20 *** Testing session_set_save_handler() : register session handler but don't start ***
/PHP-8.2/ext/standard/tests/strings/
H A Dsubstr.phpt11 /* start values >, < and = 0 */
20 /* start value variations with length values */
36 /* variation of start and length to point to same element */
37 echo ("\n*** Testing for variations of start and length to point to same element ***\n");
41 /* Testing to return empty string when start denotes the position beyond the truncation (set by neg…
42 echo ("\n*** Testing for start > truncation ***\n");
53 /* start <0 && -start > length */
156 *** Testing for variations of start and length to point to same element ***
160 *** Testing for start > truncation ***

Completed in 69 milliseconds

12345678910>>...26