Home
last modified time | relevance | path

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

1234

/php-src/ext/dom/lexbor/lexbor/core/
H A Dbst.c137 entry = entry->left; in lexbor_bst_insert()
180 entry = entry->left; in lexbor_bst_insert_not_exists()
198 scope = scope->left; in lexbor_bst_search()
310 if (entry->parent->left == entry) entry->parent->left = NULL; in lexbor_bst_remove_by_pointer()
357 left = entry->left; in lexbor_bst_remove_by_pointer()
374 left = entry->right; in lexbor_bst_remove_by_pointer()
376 while (left->left != NULL) { in lexbor_bst_remove_by_pointer()
377 left = left->left; in lexbor_bst_remove_by_pointer()
394 left->parent->left = left->right; in lexbor_bst_remove_by_pointer()
397 left->right->parent = left->parent; in lexbor_bst_remove_by_pointer()
[all …]
H A Davl.c159 pos->left = node->right; in lexbor_avl_node_rotate_right()
177 if (node->left) { in lexbor_avl_node_rotate_left()
181 pos->right = node->left; in lexbor_avl_node_rotate_left()
184 node->left = pos; in lexbor_avl_node_rotate_left()
228 node->left = lexbor_avl_node_rotate_left(node->left); in lexbor_avl_node_balance()
288 node = node->left; in lexbor_avl_insert()
335 balance_node = (node->left) ? node->left : node; in lexbor_avl_rotate_for_delete()
350 node->left = delete_node->left; in lexbor_avl_rotate_for_delete()
415 node = node->left; in lexbor_avl_remove()
471 node = node->left; in lexbor_avl_foreach()
[all …]
H A Dsbst.h25 unsigned short left; member
48 root = &strt[root->left]; in lexbor_sbst_entry_static_find()
H A Dstrtod.c266 size_t left, right; in lexbor_strtod_internal() local
283 left = e - p; in lexbor_strtod_internal()
288 p = b + left - 1; in lexbor_strtod_internal()
306 exp += (int) (left - right); in lexbor_strtod_internal()
/php-src/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-src/ext/com_dotnet/
H A Dcom_extension.stub.php293 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-src/ext/pdo_pgsql/tests/
H A Dbug43925.phpt32 WHERE (:rootId > 0 OR lft > :left OR rgt > :left)
33 AND (root = :rootId OR root = :left)
34 AND (1 > :left OR 1 < :left OR 1 = :left)
36 OR :y = 1 OR :left = 1
39 $stmt->bindValue('left', 1, PDO::PARAM_INT);
/php-src/ext/bcmath/
H A Dbcmath.c158 zend_string *left, *right; in PHP_FUNCTION() local
165 Z_PARAM_STR(left) in PHP_FUNCTION()
209 zend_string *left, *right; in PHP_FUNCTION() local
216 Z_PARAM_STR(left) in PHP_FUNCTION()
260 zend_string *left, *right; in PHP_FUNCTION() local
267 Z_PARAM_STR(left) in PHP_FUNCTION()
318 Z_PARAM_STR(left) in PHP_FUNCTION()
372 Z_PARAM_STR(left) in PHP_FUNCTION()
559 zend_string *left; in PHP_FUNCTION() local
566 Z_PARAM_STR(left) in PHP_FUNCTION()
[all …]
/php-src/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-src/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-src/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-src/ext/standard/tests/file/
H A Dproc_open01.phpt27 for ($left = strlen($test_string); $left > 0;) {
46 $left -= strlen($buf);
H A Dbug38450.phpt33 $left = substr($GLOBALS[$this->varname], 0, $this->position);
35 $GLOBALS[$this->varname] = $left . $data . $right;
/php-src/ext/standard/tests/math/
H A Dround.phpt11 function epsilon_equal($left, $right): bool {
12 return abs(($left-$right) / $left) < 1e-12;
/php-src/Zend/tests/
H A Druntime_compile_time_binary_operands.phpt153 foreach ($input as $left) {
156 $line = prepareBinaryLine($left, $right, function() use ($left, $right, $operator) {
157 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-src/ext/sodium/tests/
H A Dcrypto_stream_xchacha20.phpt39 $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-src/ext/pcre/pcre2lib/
H A Dpcre2_substring.c319 PCRE2_SIZE left, right; in pcre2_substring_length_bynumber() local
343 left = match_data->ovector[stringnumber*2]; in pcre2_substring_length_bynumber()
345 if (left > match_data->subject_length || right > match_data->subject_length) in pcre2_substring_length_bynumber()
347 if (sizeptr != NULL) *sizeptr = (left > right)? 0 : right - left; in pcre2_substring_length_bynumber()
/php-src/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-src/ext/phar/tests/zip/
H A Dbug48791.phpt12left="1.27cm"/></style:list-level-properties></text:list-level-style-bullet><text:list-level-style…
/php-src/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()

Completed in 46 milliseconds

1234