Home
last modified time | relevance | path

Searched refs:start (Results 101 – 125 of 649) sorted by relevance

12345678910>>...26

/PHP-8.2/Zend/tests/
H A Dbug51176.phpt7 public function start()
26 $foo->start();
H A Dbug63741.phpt33 function start()
38 start();
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_disasm.c298 const void *start, argument
301 const void *end = (void *)((char *)start + size);
366 ud_set_input_buffer(&ud, (uint8_t*)start, (uint8_t*)end - (uint8_t*)start);
367 ud_set_pc(&ud, (uint64_t)(uintptr_t)start);
385 cs_code = start;
386 cs_size = (uint8_t*)end - (uint8_t*)start;
392 count = cs_disasm(cs, start, (uint8_t*)end - (uint8_t*)start, (uintptr_t)start, 0, &insn);
430 cs_code = start;
431 cs_size = (uint8_t*)end - (uint8_t*)start;
516 ud_set_input_buffer(&ud, (uint8_t*)start, (uint8_t*)end - (uint8_t*)start);
[all …]
/PHP-8.2/ext/date/tests/
H A Dbug75002.phpt10 $start=new DateTime( '2012-08-01' );
12 foreach (new aaa($start) as $y) {
H A Dgh10747-4.phpt14 function __construct($start, $interval, $end)
16 parent::__construct($start, $interval, $end);
30 ["start"]=>
88 string(631) "O:1:"I":11:{s:5:"start";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2023-03-03 16:24:…
90 ["start"]=>
H A DDateTimePeriod_inherited_serialization.phpt10 DateTimeInterface $start,
16 parent::__construct($start, $interval, $recurrences, $options);
/PHP-8.2/ext/pcre/tests/
H A Dbug72685.phpt13 $start = microtime(true);
17 var_dump(($end - $start) < 0.5); // large margin, more like 0.05 in debug build
H A Dbug78272.phpt11 print "Child start\n";
23 Child start
/PHP-8.2/ext/mbstring/
H A Dgen_rare_cp_bitvec.php23 $start = hexdec($range[0]); variable
26 for ($i = $start; $i <= $end; $i++) {
/PHP-8.2/ext/zend_test/tests/
H A Dfiber_test_01.phpt13 var_dump($test->start()); // NULL
16 $value = $fiber->start();
H A Dobserver_fiber_05.phpt19 $fiber->start();
24 $fiber->start();
31 <!-- init Fiber::start() -->
H A Dobserver_fiber_04.phpt19 $fiber->start();
24 $fiber->start();
32 <!-- init Fiber::start() -->
/PHP-8.2/Zend/tests/fibers/
H A Dfatal-error-in-nested-fiber.phpt12 var_dump($fiber->start());
19 var_dump($fiber->start());
H A Dresume-running-fiber.phpt11 $fiber->start();
19 #2 %sresume-running-fiber.php(%d): Fiber->start()
H A Dfatal-error-with-multiple-fibers.phpt19 var_dump($fiber1->start());
20 var_dump($fiber2->start());
H A Dout-of-memory-in-recursive-fiber.phpt17 $fiber->start();
22 $fiber->start();
H A Dout-of-memory-in-nested-fiber.phpt22 $fiber->start();
25 $fiber->start();
/PHP-8.2/ext/intl/grapheme/
H A Dgrapheme_string.c321 int32_t start = 0; in PHP_FUNCTION() local
339 start = (int32_t) lstart; in PHP_FUNCTION()
390 if ( start < 0 ) { in PHP_FUNCTION()
402 while ( start ) { in PHP_FUNCTION()
409 start += iter_val; in PHP_FUNCTION()
412 if (0 != start) { in PHP_FUNCTION()
413 if (start > 0) { in PHP_FUNCTION()
697 int32_t start = 0; in PHP_FUNCTION() local
751 start = (int32_t) lstart; in PHP_FUNCTION()
753 pstr = str + start; in PHP_FUNCTION()
[all …]
/PHP-8.2/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c485 size_t start; member
710 pc.start = 0; in mbfl_substr_count()
745 size_t start; member
787 start = from; in mbfl_substr()
794 start = 0; in mbfl_substr()
800 start = n; in mbfl_substr()
821 end = start; in mbfl_substr()
822 n = start; in mbfl_substr()
839 start = len; in mbfl_substr()
845 start = end; in mbfl_substr()
[all …]
/PHP-8.2/ext/mbstring/tests/
H A Dmb_substr_error2.phpt14 $start = 1;
19 var_dump( mb_substr($str, $start, $length, $encoding));
/PHP-8.2/Zend/
H A Dzend_gc.h91 zval *start; member
119 *table = gc_buffer->start; in zend_get_gc_buffer_use()
120 *n = gc_buffer->cur - gc_buffer->start; in zend_get_gc_buffer_use()
/PHP-8.2/ext/pdo_firebird/
H A Dfirebird_driver.c303 const char* start = p; in preprocess() local
306 const char* i = start; in preprocess()
320 start = i; in preprocess()
372 strncat(sql_out, start, p - start); in preprocess()
376 start = p; in preprocess()
385 l = p - start; in preprocess()
392 strncpy(pname, start, l); in preprocess()
411 strncat(sql_out, start, p - start); in preprocess()
420 l = p - start; in preprocess()
430 strncat(sql_out, start, end - start); in preprocess()
[all …]
/PHP-8.2/ext/mbstring/ucgendat/
H A Ducgendat.php82 public $start; variable in Range
85 public function __construct(int $start, int $end) { argument
86 $this->start = $start;
178 return $r1->start <=> $r2->start;
186 } else if ($range->start == $lastRange->end + 1) {
188 } else if ($range->start > $lastRange->end + 1) {
194 $lastRange->start, $lastRange->end,
195 $range->start, $range->end
484 $values[] = $range->start;
722 $result .= "\n#define FIRST_DOUBLEWIDTH_CODEPOINT 0x" . dechex($wideRanges[0]->start) . "\n\n";
[all …]
/PHP-8.2/ext/standard/tests/http/
H A Dbug76342.phpt22 $start = microtime(true);
24 $diff = microtime(true) - $start;
/PHP-8.2/ext/iconv/tests/
H A Diconv_substr_error2.phpt14 $start = 1;
18 var_dump( iconv_substr($str, $start, $length, $encoding));

Completed in 51 milliseconds

12345678910>>...26