/php-src/ext/dom/lexbor/lexbor/core/ |
H A D | bst.c | 137 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 D | avl.c | 159 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 D | sbst.h | 25 unsigned short left; member 48 root = &strt[root->left]; in lexbor_sbst_entry_static_find()
|
H A D | strtod.c | 266 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 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-src/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-src/ext/pdo_pgsql/tests/ |
H A D | bug43925.phpt | 31 WHERE (:rootId > 0 OR lft > :left OR rgt > :left) 32 AND (root = :rootId OR root = :left) 33 AND (1 > :left OR 1 < :left OR 1 = :left) 35 OR :y = 1 OR :left = 1 38 $stmt->bindValue('left', 1, PDO::PARAM_INT);
|
/php-src/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-src/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-src/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-src/ext/xmlwriter/tests/ |
H A D | xmlwriter_toMemory_normal_usage.phpt | 10 $writer->writeAttribute("align", "left"); 17 <root align="left"><!--hello--></root>
|
H A D | xmlwriter_toStream_normal_usage.phpt | 12 $writer->writeAttribute("align", "left"); 27 <root align="left"><!--hello--></root>
|
/php-src/ext/standard/tests/file/ |
H A D | proc_open01.phpt | 27 for ($left = strlen($test_string); $left > 0;) { 46 $left -= strlen($buf);
|
/php-src/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-src/ext/dom/tests/modern/css_selectors/ |
H A D | namespaces.phpt | 12 <container align="left"/> 40 <container align="left" foo:bar="baz" xmlns:a="urn:a" a:bar="baz"/> 42 <container align="left" foo:bar="baz" xmlns:a="urn:a" a:bar="baz"/>
|
/php-src/Zend/tests/ |
H A D | runtime_compile_time_binary_operands.phpt | 154 foreach ($input as $left) { 157 $line = prepareBinaryLine($left, $right, function() use ($left, $right, $operator) { 158 return eval("return @(\$left $operator \$right);");
|
H A D | bug45877.phpt | 2 Bug #45877 (Array key '2147483647' left as string)
|
/php-src/ext/bcmath/ |
H A D | bcmath.c | 185 zend_string *left, *right; in PHP_FUNCTION() local 192 Z_PARAM_STR(left) in PHP_FUNCTION() 241 Z_PARAM_STR(left) in PHP_FUNCTION() 290 Z_PARAM_STR(left) in PHP_FUNCTION() 339 Z_PARAM_STR(left) in PHP_FUNCTION() 393 Z_PARAM_STR(left) in PHP_FUNCTION() 446 Z_PARAM_STR(left) in PHP_FUNCTION() 637 zend_string *left; in PHP_FUNCTION() local 644 Z_PARAM_STR(left) in PHP_FUNCTION() 687 Z_PARAM_STR(left) in PHP_FUNCTION() [all …]
|
/php-src/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-src/Zend/tests/numeric_literal_separator/ |
H A D | numeric_literal_separator_008.phpt | 2 Invalid use: underscore left of e
|
H A D | numeric_literal_separator_004.phpt | 2 Invalid use: underscore left of period
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_substring.c | 319 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 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-src/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…
|