Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 74) sorted by relevance

123

/PHP-8.1/ext/com_dotnet/
H A Dcom_extension.stub.php7 function variant_add(mixed $left, mixed $right): variant {} argument
9 function variant_cat(mixed $left, mixed $right): variant {} argument
11 function variant_sub(mixed $left, mixed $right): variant {} argument
13 function variant_mul(mixed $left, mixed $right): variant {} argument
15 function variant_and(mixed $left, mixed $right): variant {} argument
17 function variant_div(mixed $left, mixed $right): variant {} argument
19 function variant_eqv(mixed $left, mixed $right): variant {} argument
21 function variant_idiv(mixed $left, mixed $right): variant {} argument
23 function variant_imp(mixed $left, mixed $right): variant {} argument
25 function variant_mod(mixed $left, mixed $right): variant {} argument
[all …]
/PHP-8.1/ext/gd/tests/
H A Dlibgd00100.phpt42 $left = 120;
45 $left, $top,
48 $left, $bot,
53 // left-facing M on baseline
56 $left = 20;
59 $left, $top,
62 $left, $bot,
67 // left-facing M on ceiling
70 $left = 20;
73 $left, $top,
[all …]
/PHP-8.1/ext/bcmath/
H A Dbcmath.c155 zend_string *left, *right; in PHP_FUNCTION() local
162 Z_PARAM_STR(left) in PHP_FUNCTION()
213 Z_PARAM_STR(left) in PHP_FUNCTION()
264 Z_PARAM_STR(left) in PHP_FUNCTION()
315 Z_PARAM_STR(left) in PHP_FUNCTION()
371 Z_PARAM_STR(left) in PHP_FUNCTION()
427 Z_PARAM_STR(left) in PHP_FUNCTION()
486 Z_PARAM_STR(left) in PHP_FUNCTION()
530 zend_string *left; in PHP_FUNCTION() local
537 Z_PARAM_STR(left) in PHP_FUNCTION()
[all …]
/PHP-8.1/ext/pdo_pgsql/tests/
H A Dbug43925.phpt36 WHERE (:rootId > 0 OR lft > :left OR rgt > :left)
37 AND (root = :rootId OR root = :left)
38 AND (1 > :left OR 1 < :left OR 1 = :left)
40 OR :y = 1 OR :left = 1
43 $stmt->bindValue('left', 1, PDO::PARAM_INT);
/PHP-8.1/ext/pcre/tests/
H A Dpreg_replace_callback.phpt13 $input = '<div style="margin-left: 10px">'.$input[1].'</div>';
25 plain <div style="margin-left: 10px"> deep <div style="margin-left: 10px"> [abcd]deeper[/abcd] </di…
/PHP-8.1/ext/standard/tests/strings/
H A Dstrnatcmp_leftalign.phpt2 Test strnatcmp() function : left align, whitespace, digits
7 echo "-- Testing strnatcmp() function whitespace, left-align, digit --\n";
19 -- Testing strnatcmp() function whitespace, left-align, digit --
H A Dstr_rot13_basic.phpt11 echo "\nEnsure numeric characters are left untouched\n";
18 echo "\nEnsure non-alphabetic characters are left untouched\n";
42 Ensure numeric characters are left untouched
45 Ensure non-alphabetic characters are left untouched
/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_pconnect.phpt43 $left = $num;
45 while (count($connections) && $left > 0) {
48 } while (!isset($connections[$index]) && $left > 0);
50 $left--;
54 $left--;
/PHP-8.1/ext/standard/tests/file/
H A Dproc_open01.phpt27 for ($left = strlen($test_string); $left > 0;) {
46 $left -= strlen($buf);
H A Dbug38450.phpt32 $left = substr($GLOBALS[$this->varname], 0, $this->position);
34 $GLOBALS[$this->varname] = $left . $data . $right;
H A Dbug38450_1.phpt32 $left = substr($GLOBALS[$this->varname], 0, $this->position);
34 $GLOBALS[$this->varname] = $left . $data . $right;
/PHP-8.1/ext/standard/tests/math/
H A Dround.phpt11 function epsilon_equal($left, $right): bool {
12 return abs(($left-$right) / $left) < 1e-12;
/PHP-8.1/Zend/tests/
H A Druntime_compile_time_binary_operands.phpt148 foreach ($input as $left) {
151 $line = prepareBinaryLine($left, $right, function() use ($left, $right, $operator) {
152 return eval("return @(\$left $operator \$right);");
H A Dnumeric_literal_separator_004.phpt2 Invalid use: underscore left of period
H A Dnumeric_literal_separator_008.phpt2 Invalid use: underscore left of e
H A Dbug45877.phpt2 Bug #45877 (Array key '2147483647' left as string)
H A Dshift_001.phpt2 shifting strings left
/PHP-8.1/ext/standard/
H A Dbase64.c118 *left = inl; in neon_base64_encode()
127 size_t left = 0; in php_base64_encode_impl() local
128 out = neon_base64_encode(in, inl, out, &left); in php_base64_encode_impl()
129 in += inl - left; in php_base64_encode_impl()
130 inl = left; in php_base64_encode_impl()
177 … size_t neon_base64_decode(const unsigned char *in, size_t inl, unsigned char *out, size_t *left) { in neon_base64_decode() argument
241 *left = inl; in neon_base64_decode()
253 size_t left = 0; in php_base64_decode_impl() local
254 j += neon_base64_decode(in, inl, out, &left); in php_base64_decode_impl()
255 i = inl - left; in php_base64_decode_impl()
[all …]
H A Dmt_rand.c139 BG(left) = N; in php_mt_reload()
172 if (BG(left) == 0) { in php_mt_rand()
175 --BG(left); in php_mt_rand()
/PHP-8.1/main/streams/
H A Dfilter.c128 PHPAPI int php_stream_bucket_split(php_stream_bucket *in, php_stream_bucket **left, php_stream_buck… in php_stream_bucket_split() argument
130 *left = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); in php_stream_bucket_split()
133 (*left)->buf = pemalloc(length, in->is_persistent); in php_stream_bucket_split()
134 (*left)->buflen = length; in php_stream_bucket_split()
135 memcpy((*left)->buf, in->buf, length); in php_stream_bucket_split()
136 (*left)->refcount = 1; in php_stream_bucket_split()
137 (*left)->own_buf = 1; in php_stream_bucket_split()
138 (*left)->is_persistent = in->is_persistent; in php_stream_bucket_split()
/PHP-8.1/ext/phar/tests/zip/
H A Dbug48791.phpt12left="1.27cm"/></style:list-level-properties></text:list-level-style-bullet><text:list-level-style…
/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c79 size_t decompressed_size = left + MYSQLND_HEADER_SIZE; in write_compressed_packet()
121 size_t left = count; in MYSQLND_METHOD() local
131 … MYSQLND_HEADER_SIZE + COMPRESSED_HEADER_SIZE + MYSQLND_HEADER_SIZE + MIN(left, MYSQLND_MAX_PACKET… in MYSQLND_METHOD()
137 to_be_sent = MIN(left, MYSQLND_MAX_PACKET_SIZE); in MYSQLND_METHOD()
179 left -= to_be_sent; in MYSQLND_METHOD()
188 } while (bytes_sent > 0 && (left > 0 || to_be_sent == MYSQLND_MAX_PACKET_SIZE)); in MYSQLND_METHOD()
190 DBG_INF_FMT("packet_size=%zu packet_no=%u", left, pfc->data->packet_no); in MYSQLND_METHOD()
/PHP-8.1/ext/pcre/pcre2lib/
H A Dpcre2_substring.c318 PCRE2_SIZE left, right; in pcre2_substring_length_bynumber() local
342 left = match_data->ovector[stringnumber*2]; in pcre2_substring_length_bynumber()
344 if (sizeptr != NULL) *sizeptr = (left > right)? 0 : right - left; in pcre2_substring_length_bynumber()
/PHP-8.1/ext/date/lib/
H A Dparse_tz.c582 int left = 0, right = tzdb->index_size - 1; in seek_to_tz_position() local
589 int mid = ((unsigned)left + right) >> 1; in seek_to_tz_position()
595 left = mid + 1; in seek_to_tz_position()
601 } while (left <= right); in seek_to_tz_position()
792 uint32_t left, right; in timelib_fetch_timezone_offset() local
838 left = 0; in timelib_fetch_timezone_offset()
841 while (right - left > 1) { in timelib_fetch_timezone_offset()
842 uint32_t mid = (left + right) >> 1; in timelib_fetch_timezone_offset()
847 left = mid; in timelib_fetch_timezone_offset()
850 *transition_time = tz->trans[left]; in timelib_fetch_timezone_offset()
[all …]
/PHP-8.1/ext/sysvshm/tests/
H A D004.phpt32 Warning: shm_put_var(): Not enough shared memory left in %s004.php on line %d

Completed in 37 milliseconds

123