/PHP-8.2/ext/gd/tests/ |
H A D | libgd00100.phpt | 42 $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.2/ext/com_dotnet/ |
H A D | com_extension.stub.php | 293 function variant_add(mixed $left, mixed $right): variant {} argument 295 function variant_cat(mixed $left, mixed $right): variant {} argument 297 function variant_sub(mixed $left, mixed $right): variant {} argument 299 function variant_mul(mixed $left, mixed $right): variant {} argument 301 function variant_and(mixed $left, mixed $right): variant {} argument 303 function variant_div(mixed $left, mixed $right): variant {} argument 305 function variant_eqv(mixed $left, mixed $right): variant {} argument 309 function variant_imp(mixed $left, mixed $right): variant {} argument 311 function variant_mod(mixed $left, mixed $right): variant {} argument 313 function variant_or(mixed $left, mixed $right): variant {} argument [all …]
|
/PHP-8.2/ext/pdo_pgsql/tests/ |
H A D | bug43925.phpt | 36 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.2/ext/bcmath/ |
H A D | bcmath.c | 155 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.2/ext/pcre/tests/ |
H A D | preg_replace_callback.phpt | 13 $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.2/ext/standard/tests/strings/ |
H A D | strnatcmp_leftalign.phpt | 2 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 D | str_rot13_basic.phpt | 11 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.2/ext/mysqli/tests/ |
H A D | mysqli_pconnect.phpt | 43 $left = $num; 45 while (count($connections) && $left > 0) { 48 } while (!isset($connections[$index]) && $left > 0); 50 $left--; 54 $left--;
|
/PHP-8.2/ext/standard/tests/file/ |
H A D | proc_open01.phpt | 27 for ($left = strlen($test_string); $left > 0;) { 46 $left -= strlen($buf);
|
H A D | bug38450.phpt | 33 $left = substr($GLOBALS[$this->varname], 0, $this->position); 35 $GLOBALS[$this->varname] = $left . $data . $right;
|
H A D | bug38450_1.phpt | 33 $left = substr($GLOBALS[$this->varname], 0, $this->position); 35 $GLOBALS[$this->varname] = $left . $data . $right;
|
/PHP-8.2/ext/standard/tests/math/ |
H A D | round.phpt | 11 function epsilon_equal($left, $right): bool { 12 return abs(($left-$right) / $left) < 1e-12;
|
/PHP-8.2/Zend/tests/ |
H A D | runtime_compile_time_binary_operands.phpt | 148 foreach ($input as $left) { 151 $line = prepareBinaryLine($left, $right, function() use ($left, $right, $operator) { 152 return eval("return @(\$left $operator \$right);");
|
H A D | numeric_literal_separator_004.phpt | 2 Invalid use: underscore left of period
|
H A D | numeric_literal_separator_008.phpt | 2 Invalid use: underscore left of e
|
H A D | bug45877.phpt | 2 Bug #45877 (Array key '2147483647' left as string)
|
H A D | shift_001.phpt | 2 shifting strings left
|
/PHP-8.2/ext/sodium/tests/ |
H A D | crypto_stream_xchacha20.phpt | 39 $left = str_repeat("\x01", 64); 43 $stream7_unified = sodium_crypto_stream_xchacha20_xor($left . $right, $n2, $key); 46 $stream7_left = sodium_crypto_stream_xchacha20_xor_ic($left, $n2, 0, $key);
|
/PHP-8.2/ext/standard/ |
H A D | base64.c | 118 *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 …]
|
/PHP-8.2/main/streams/ |
H A D | filter.c | 128 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.2/ext/phar/tests/zip/ |
H A D | bug48791.phpt | 12 …left="1.27cm"/></style:list-level-properties></text:list-level-style-bullet><text:list-level-style…
|
/PHP-8.2/ext/mysqlnd/ |
H A D | mysqlnd_protocol_frame_codec.c | 79 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.2/ext/pcre/pcre2lib/ |
H A D | pcre2_substring.c | 318 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.2/ext/date/lib/ |
H A D | parse_tz.c | 582 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.2/ext/sysvshm/tests/ |
H A D | 004.phpt | 32 Warning: shm_put_var(): Not enough shared memory left in %s004.php on line %d
|