Home
last modified time | relevance | path

Searched refs:start (Results 301 – 325 of 431) sorted by relevance

1...<<1112131415161718

/PHP-8.0/ext/opcache/jit/dynasm/
H A Ddasm_arm.h177 void dasm_put(Dst_DECL, int start, ...) in dasm_put() argument
181 dasm_ActList p = D->actionlist + start; in dasm_put()
194 b[pos++] = start; in dasm_put()
196 va_start(ap, start); in dasm_put()
H A Ddasm_arm64.h217 void dasm_put(Dst_DECL, int start, ...) in dasm_put() argument
221 dasm_ActList p = D->actionlist + start; in dasm_put()
234 b[pos++] = start; in dasm_put()
236 va_start(ap, start); in dasm_put()
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_begintransaction.phpt22 printf("[002] Cannot start a transaction, [%s] [%s]\n",
137 printf("[029] Cannot start a transaction, [%d] %s\n",
153 printf("[031] Cannot start a transaction, [%s] [%s]\n",
166 printf("[035] Cannot start a transaction, [%s] [%s]\n",
/PHP-8.0/ext/date/lib/
H A Dtm2unixtime.c36 static void do_range_limit(timelib_sll start, timelib_sll end, timelib_sll adj, timelib_sll *a, tim… in do_range_limit() argument
38 if (*a < start) { in do_range_limit()
39 *b -= (start - *a - 1) / adj + 1; in do_range_limit()
40 *a += adj * ((start - *a - 1) / adj + 1); in do_range_limit()
/PHP-8.0/ext/json/
H A Djson_parser.y63 %type <value> start object key value array
78 start:
/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_trace.c225 t->code_start = start; in zend_jit_trace_add_code()
2394 ZEND_ASSERT(start[var] >= 0); in zend_jit_trace_use_var()
2432 int *start, *end; in zend_jit_trace_allocate_registers() local
2452 if (!start) { in zend_jit_trace_allocate_registers()
2487 start[i] = 0; in zend_jit_trace_allocate_registers()
2521 start[phi->ssa_var] = 0; in zend_jit_trace_allocate_registers()
2764 start[j] = idx; in zend_jit_trace_allocate_registers()
2796 start[j] = idx; in zend_jit_trace_allocate_registers()
2872 list[j].range.start = start[i]; in zend_jit_trace_allocate_registers()
2883 start = end = NULL; in zend_jit_trace_allocate_registers()
[all …]
H A Dzend_jit.h151 uint32_t start; member
/PHP-8.0/Zend/
H A Dbench.php360 function end_test($start, $name) argument
365 $total += $end-$start;
366 $num = number_format($end-$start,3);
H A Dzend_alloc.c563 zend_mm_bitset_set_bit(bitset, start);
565 int pos = start / ZEND_MM_BITSET_LEN;
566 int end = (start + len - 1) / ZEND_MM_BITSET_LEN;
567 int bit = start & (ZEND_MM_BITSET_LEN - 1);
595 zend_mm_bitset_reset_bit(bitset, start);
597 int pos = start / ZEND_MM_BITSET_LEN;
598 int end = (start + len - 1) / ZEND_MM_BITSET_LEN;
599 int bit = start & (ZEND_MM_BITSET_LEN - 1);
627 return !zend_mm_bitset_is_set(bitset, start);
629 int pos = start / ZEND_MM_BITSET_LEN;
[all …]
/PHP-8.0/ext/standard/tests/streams/
H A Dbug61019.phpt67 echo "Can't start external command\n";
/PHP-8.0/tests/lang/
H A DforeachLoop.012.phpt42 echo "\n\n\nShift elements off start of an unreferenced array";
63 echo "\n\n\nAdding elements to the start of an unreferenced array";
141 Shift elements off start of an unreferenced array
388 Adding elements to the start of an unreferenced array
H A DforeachLoop.014.phpt44 echo "\n\n\nShift elements off start of a referenced array";
65 echo "\n\n\nAdding elements to the start of a referenced array";
143 Shift elements off start of a referenced array
390 Adding elements to the start of a referenced array
H A DforeachLoop.013.phpt42 echo "\n\n\nShift elements off start of an unreferenced array, using &\$value.";
63 echo "\n\n\nAdding elements to the start of an unreferenced array, using &\$value.";
145 Shift elements off start of an unreferenced array, using &$value.
438 Adding elements to the start of an unreferenced array, using &$value.
H A DforeachLoop.015.phpt44 echo "\n\n\nShift elements off start of a referenced array, using &\$value";
65 echo "\n\n\nAdding elements to the start of a referenced array, using &\$value";
147 Shift elements off start of a referenced array, using &$value
440 Adding elements to the start of a referenced array, using &$value
/PHP-8.0/sapi/litespeed/
H A DREADME.md49 servers. In such environment, lsphp can be start manually from command with
115 match "Max Connections" configuration for PHP external application. To start
118 Connections" and greater than 1. Web Server will start one PHP process, this
119 process will start/stop children PHP processes dynamically based on on demand.
133 start children process on demand to save system resource. This is preferred in
/PHP-8.0/ext/opcache/
H A DZendAccelerator.c408 s = ZCSG(interned_strings).start; in accel_interned_strings_restore_state()
2671 ZCSG(interned_strings).start = in zend_accel_init_shm()
2677 ZCSG(interned_strings).start; in zend_accel_init_shm()
2756 memcpy(mem, start, real_size); in accel_remap_huge_pages()
2759 ret = mmap(start, size, in accel_remap_huge_pages()
2765 ret = mmap(start, size, in accel_remap_huge_pages()
2792 if (ret == start) { in accel_remap_huge_pages()
2824 seg_end = start; in accel_move_code_to_huge_pages()
2851 uintptr_t end = start + s; in accel_move_code_to_huge_pages()
2852 while (start < end) { in accel_move_code_to_huge_pages()
[all …]
/PHP-8.0/ext/gmp/
H A Dgmp.stub.php100 function gmp_scan0(GMP|int|string $num1, int $start): int {} argument
102 function gmp_scan1(GMP|int|string $num1, int $start): int {} argument
/PHP-8.0/ext/standard/
H A Dstring.c257 Z_PARAM_LONG(start) in php_spn_common_handler()
262 if (start < 0) { in php_spn_common_handler()
263 start += remain_len; in php_spn_common_handler()
264 if (start < 0) { in php_spn_common_handler()
265 start = 0; in php_spn_common_handler()
268 start = remain_len; in php_spn_common_handler()
271 remain_len -= start; in php_spn_common_handler()
755 start++; in php_trim_int()
776 start++; in php_trim_int()
799 start++; in php_trim_int()
[all …]
/PHP-8.0/main/
H A Drfc1867.c510 static char *substring_conf(char *start, int len, char quote) in substring_conf() argument
516 for (i = 0; i < len && start[i] != quote; ++i) { in substring_conf()
517 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { in substring_conf()
518 *resp++ = start[++i]; in substring_conf()
520 *resp++ = start[i]; in substring_conf()
/PHP-8.0/ext/mbstring/tests/
H A Dmb_ereg_variation5.phpt11 * Test mb_ereg with anchors (start and end of string) in $pattern
/PHP-8.0/sapi/fpm/tests/
H A Dsocket-uds-acl.phpt61 $tester->start();
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_fetch_array_large.phpt134 $start = microtime(true);
140 $duration = microtime(true) - $start;
/PHP-8.0/sapi/phpdbg/
H A D.phpdbginit5 # Code must start and end with <: and :> respectively
/PHP-8.0/ext/dom/tests/
H A Dbug32615.phpt35 $frag->appendChild(new DOMElement('start'));
/PHP-8.0/ext/date/
H A Dphp_date.h82 timelib_time *start; member

Completed in 198 milliseconds

1...<<1112131415161718