Home
last modified time | relevance | path

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

1234

/PHP-7.2/ext/gd/tests/
H A Dlibgd00100.phpt41 $left = 120;
44 $left, $top,
47 $left, $bot,
52 // left-facing M on baseline
55 $left = 20;
58 $left, $top,
61 $left, $bot,
66 // left-facing M on ceiling
69 $left = 20;
72 $left, $top,
[all …]
H A Dbug77200.phpt2 Bug #77200 (imagecropauto(…, GD_CROP_SIDES) crops left but not right)
/PHP-7.2/tests/
H A Dquicktester.inc38 list($left,$right) = explode($operator, $test);
47 $left = eval("return ($left );");
51 $result = $left === $right;
54 if ( !is_float($left ) && !is_int($left )
59 $result = abs(($left-$right) / $left) < 1e-12;
70 echo "Left: ";var_dump($left );
/PHP-7.2/ext/bcmath/
H A Dbcmath.c230 zend_string *left, *right; in PHP_FUNCTION() local
236 Z_PARAM_STR(left) in PHP_FUNCTION()
276 Z_PARAM_STR(left) in PHP_FUNCTION()
316 Z_PARAM_STR(left) in PHP_FUNCTION()
356 Z_PARAM_STR(left) in PHP_FUNCTION()
402 Z_PARAM_STR(left) in PHP_FUNCTION()
448 Z_PARAM_STR(left) in PHP_FUNCTION()
493 Z_PARAM_STR(left) in PHP_FUNCTION()
527 zend_string *left; in PHP_FUNCTION() local
533 Z_PARAM_STR(left) in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/pdo_pgsql/tests/
H A Dbug43925.phpt34 WHERE (:rootId > 0 OR lft > :left OR rgt > :left)
35 AND (root = :rootId OR root = :left)
36 AND (1 > :left OR 1 < :left OR 1 = :left)
38 OR :y = 1 OR :left = 1
41 $stmt->bindValue('left', 1, PDO::PARAM_INT);
/PHP-7.2/ext/com_dotnet/
H A Dcom_extension.c52 ZEND_ARG_INFO(0, left)
57 ZEND_ARG_INFO(0, left)
62 ZEND_ARG_INFO(0, left)
67 ZEND_ARG_INFO(0, left)
72 ZEND_ARG_INFO(0, left)
77 ZEND_ARG_INFO(0, left)
82 ZEND_ARG_INFO(0, left)
87 ZEND_ARG_INFO(0, left)
92 ZEND_ARG_INFO(0, left)
97 ZEND_ARG_INFO(0, left)
[all …]
/PHP-7.2/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-7.2/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-7.2/ext/standard/tests/strings/
H A Dstr_rot13_basic.phpt15 echo "\nEnsure numeric characters are left untouched\n";
22 echo "\nEnsure non-alphabetic characters are left untouched\n";
47 Ensure numeric characters are left untouched
50 Ensure non-alphabetic characters are left untouched
H A Dmoney_format_basic1.phpt26 // left precision, 2 of right precision using national
28 echo "Format values with 14 positions, 8 digits to left, 2 to right using national format\n";
61 Format values with 14 positions, 8 digits to left, 2 to right using national format
/PHP-7.2/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;
H A Dbug38450_2.phpt32 $left = substr($GLOBALS[$this->varname], 0, $this->position);
34 $GLOBALS[$this->varname] = $left . $data . $right;
H A Dbug38450_3.phpt32 $left = substr($GLOBALS[$this->varname], 0, $this->position);
34 $GLOBALS[$this->varname] = $left . $data . $right;
/PHP-7.2/ext/zip/lib/
H A Dzip_source_buffer.c346 zip_uint64_t left = ZIP_MIN(length - n, buffer->fragment_size - fragment_offset); in buffer_read() local
348 memcpy(data + n, buffer->fragments[i] + fragment_offset, left); in buffer_read()
350 n += left; in buffer_read()
420 zip_uint64_t left = ZIP_MIN(length - n, buffer->fragment_size - fragment_offset); in buffer_write() local
422 memcpy(buffer->fragments[i] + fragment_offset, data + n, left); in buffer_write()
424 n += left; in buffer_write()
/PHP-7.2/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-7.2/ext/phar/tests/zip/
H A Dbug48791.phpt14left="1.27cm"/></style:list-level-properties></text:list-level-style-bullet><text:list-level-style…
/PHP-7.2/Zend/
H A Dzend_language_parser.y56 %left ','
65 %left '?' ':'
69 %left '|'
70 %left '^'
71 %left '&'
74 %left T_SL T_SR
75 %left '+' '-' '.'
83 %left T_NOELSE
84 %left T_ELSEIF
85 %left T_ELSE
[all …]
/PHP-7.2/Zend/tests/
H A Dbug45877.phpt2 Bug #45877 (Array key '2147483647' left as string)
H A Dshift_001.phpt2 shifting strings left
/PHP-7.2/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c72 size_t left = count; in MYSQLND_METHOD() local
81 … MYSQLND_HEADER_SIZE + COMPRESSED_HEADER_SIZE + MYSQLND_HEADER_SIZE + MIN(left, MYSQLND_MAX_PACKET… in MYSQLND_METHOD()
87 to_be_sent = MIN(left, MYSQLND_MAX_PACKET_SIZE); in MYSQLND_METHOD()
121 size_t decompressed_size = left + MYSQLND_HEADER_SIZE; in MYSQLND_METHOD()
155 left -= to_be_sent; in MYSQLND_METHOD()
164 } while (bytes_sent && (left > 0 || to_be_sent == MYSQLND_MAX_PACKET_SIZE)); in MYSQLND_METHOD()
166 DBG_INF_FMT("packet_size="MYSQLND_SZ_T_SPEC" packet_no=%u", left, pfc->data->packet_no); in MYSQLND_METHOD()
/PHP-7.2/ext/standard/
H A Dmt_rand.c143 BG(left) = N; in php_mt_reload()
174 if (BG(left) == 0) { in php_mt_rand()
177 --BG(left); in php_mt_rand()
/PHP-7.2/ext/wddx/tests/
H A Dbug52468.phpt2 Bug #52468 (wddx_deserialize corrupts integer field value when left empty)
/PHP-7.2/scripts/dev/
H A Dcheck_parameters.php76 $left = 0;
81 $mid = intval(($left + $right)/2);
89 $left = $mid;

Completed in 60 milliseconds

1234