Home
last modified time | relevance | path

Searched refs:start (Results 126 – 150 of 688) sorted by relevance

12345678910>>...28

/php-src/ext/date/tests/
H A Dbug75002.phpt10 $start=new DateTime( '2012-08-01' );
12 foreach (new aaa($start) as $y) {
/php-src/ext/standard/tests/array/range/
H A Dbug32021.phpt10 Warning: range(): Argument #1 ($start) must not be empty, casted to 0 in %s on line %d
12 Warning: range(): Argument #1 ($start) must be a single byte string if argument #2 ($end) is a sing…
H A Drange_inputs_float_small_step_exhaustion.phpt17 The supplied range exceeds the maximum array size: start=0.0 end=100000000000.0 step=0.1
18 The supplied range exceeds the maximum array size: start=-%d end=%d step=1
/php-src/ext/opcache/jit/ir/
H A Dir_perf.c205 int ir_perf_jitdump_register(const char *name, const void *start, size_t size) in ir_perf_jitdump_register() argument
238 rec.vma = (uint64_t)(uintptr_t)start; in ir_perf_jitdump_register()
239 rec.code_address = (uint64_t)(uintptr_t)start; in ir_perf_jitdump_register()
245 || write(jitdump_fd, start, size) < 0) { in ir_perf_jitdump_register()
252 void ir_perf_map_register(const char *name, const void *start, size_t size) in ir_perf_map_register() argument
266 fprintf(fp, "%zx %zx %s\n", (size_t)(uintptr_t)start, size, name); in ir_perf_map_register()
/php-src/ext/zend_test/tests/
H A Dobserver_fiber_04.phpt19 $fiber->start();
24 $fiber->start();
32 <!-- init Fiber::start() -->
H A Dobserver_fiber_05.phpt19 $fiber->start();
24 $fiber->start();
31 <!-- init Fiber::start() -->
H A Dobserver_fiber_02.phpt16 $fiber->start();
22 <!-- init Fiber::start() -->
/php-src/Zend/tests/
H A Dbug63741.phpt33 function start()
38 start();
/php-src/ext/mbstring/tests/
H A Dmb_substr_error2.phpt14 $start = 1;
19 var_dump( mb_substr($str, $start, $length, $encoding));
/php-src/Zend/tests/fibers/
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();
H A Dresume-running-fiber.phpt11 $fiber->start();
19 #2 %sresume-running-fiber.php(%d): Fiber->start()
H A Dno-switch-dtor-suspend.phpt14 $fiber->start();
22 #2 %sno-switch-dtor-suspend.php(%d): Fiber->start()
/php-src/ext/opcache/tests/jit/
H A Dgh12585.phpt16 DateTimeInterface $start,
22 parent::__construct($start, $interval, $recurrences, $options);
/php-src/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-src/Zend/Optimizer/
H A Dblock_pass.c70 b->start++; in strip_leading_nops()
92 i = j = b->start + 1; in strip_nops()
93 while (i < b->start + b->len) { in strip_nops()
102 b->len = j - b->start; in strip_nops()
148 opline = op_array->opcodes + block->start; in zend_optimize_block()
989 b->start = opline - new_opcodes; in assemble_code_blocks()
1106 cfg->map[cfg->blocks[n].start] = n; in assemble_code_blocks()
1440 opline = op_array->opcodes + block->start; in zend_t_usage()
1521 end = op_array->opcodes + block->start; in zend_t_usage()
1652 prev->len = b->start + b->len - prev->start; in zend_merge_blocks()
[all …]
/php-src/ext/iconv/tests/
H A Diconv_substr_error2.phpt14 $start = 1;
18 var_dump( iconv_substr($str, $start, $length, $encoding));
/php-src/ext/dom/tests/
H A DDOMDocument_relaxNGValidateSource_basic.phpt13 <start>
19 </start>
/php-src/ext/standard/tests/http/
H A Dbug76342.phpt22 $start = microtime(true);
24 $diff = microtime(true) - $start;
/php-src/ext/dom/lexbor/lexbor/html/
H A Dtokenizer.c87 tkz->start = lexbor_malloc(LXB_HTML_TKZ_TEMP_SIZE * sizeof(lxb_char_t)); in lxb_html_tokenizer_init()
88 if (tkz->start == NULL) { in lxb_html_tokenizer_init()
92 tkz->pos = tkz->start; in lxb_html_tokenizer_init()
93 tkz->end = tkz->start + LXB_HTML_TKZ_TEMP_SIZE; in lxb_html_tokenizer_init()
153 tkz_to->start = tkz_from->start; in lxb_html_tokenizer_inherit()
155 tkz_to->pos = tkz_to->start; in lxb_html_tokenizer_inherit()
209 tkz->pos = tkz->start; in lxb_html_tokenizer_clean()
237 lexbor_free(tkz->start); in lxb_html_tokenizer_destroy()
/php-src/sapi/fpm/
H A Dinit.d.php-fpm.in54 start)
130 $0 start
/php-src/ext/curl/tests/
H A Dcurl_basic_011.phpt12 // start testing
18 ob_start(); // start output buffering
H A Dcurl_basic_012.phpt12 // start testing
18 ob_start(); // start output buffering
H A Dcurl_basic_013.phpt12 // start testing
18 ob_start(); // start output buffering

Completed in 26 milliseconds

12345678910>>...28