/php-src/ext/dom/lexbor/lexbor/core/ |
H A D | avl.c | 155 if (node->right) { in lexbor_avl_node_rotate_right() 159 pos->left = node->right; in lexbor_avl_node_rotate_right() 162 node->right = pos; in lexbor_avl_node_rotate_right() 181 pos->right = node->left; in lexbor_avl_node_rotate_left() 208 node->right = lexbor_avl_node_rotate_right(node->right); in lexbor_avl_node_balance() 302 node = node->right; in lexbor_avl_insert() 321 node = node->right; in lexbor_avl_find_min() 338 node->right = delete_node->right; in lexbor_avl_rotate_for_delete() 349 node->right = delete_node->right; in lexbor_avl_rotate_for_delete() 381 balance_node->right = delete_node->right; in lexbor_avl_rotate_for_delete() [all …]
|
H A D | bst.c | 127 entry = entry->right; in lexbor_bst_insert() 170 entry = entry->right; in lexbor_bst_insert_not_exists() 195 scope = scope->right; in lexbor_bst_search() 216 scope = scope->right; in lexbor_bst_search_close() 237 entry = entry->right; in lexbor_bst_remove() 263 entry = entry->right; in lexbor_bst_remove_close() 311 if (entry->parent->right == entry) entry->parent->right = NULL; in lexbor_bst_remove_by_pointer() 330 right = entry->right; in lexbor_bst_remove_by_pointer() 374 left = entry->right; in lexbor_bst_remove_by_pointer() 387 entry->right = left->right; in lexbor_bst_remove_by_pointer() [all …]
|
H A D | sbst.h | 26 unsigned short right; member 45 root = &strt[root->right]; in lexbor_sbst_entry_static_find()
|
H A D | strtod.c | 266 size_t left, right; in lexbor_strtod_internal() local 298 right = p - b + 1; in lexbor_strtod_internal() 300 length = right; in lexbor_strtod_internal() 306 exp += (int) (left - right); in lexbor_strtod_internal()
|
/php-src/ext/pcre/tests/ |
H A D | 006.phpt | 9 $text = '[CODE]<td align="$stylevar[right]">[/CODE]'; 10 $result = preg_replace(array('#\[(right)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU', '#\[(right)\](((?R)|[^[… 14 $result = preg_replace('#\[(right)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU', '', $text); 21 string(58) "[CODE]<td align="$stylevar[right]">[/CODE]" 23 string(58) "[CODE]<td align="$stylevar[right]">[/CODE]"
|
/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/gd/tests/ |
H A D | libgd00100.phpt | 43 $right = 180; 46 $right, $top, 47 $right, $bot, 49 ($left+$right)/2, ($top+$bot)/2 57 $right = 80; 60 $right, $top, 61 $right, $bot, 63 ($left+$right)/2, ($top+$bot)/2 71 $right = 80; 74 $right, $top, [all …]
|
/php-src/ext/dom/tests/modern/html/interactions/ |
H A D | Document_body_getter.phpt | 30 echo "--- body in right namespace ---\n"; 36 echo "--- frameset in right namespace ---\n"; 42 echo "--- prefixed body in right namespace ---\n"; 48 echo "--- prefixed frameset in right namespace ---\n"; 54 echo "--- multiple body-like elements in right namespace ---\n"; 84 --- body in right namespace --- 86 --- frameset in right namespace --- 88 --- prefixed body in right namespace --- 90 --- prefixed frameset in right namespace --- 92 --- multiple body-like elements in right namespace ---
|
H A D | Document_head.phpt | 24 echo "--- head in right namespace ---\n"; 30 echo "--- prefixed head in right namespace ---\n"; 36 echo "--- multiple head elements in right namespace ---\n"; 64 --- head in right namespace --- 66 --- prefixed head in right namespace --- 68 --- multiple head elements in right namespace ---
|
/php-src/Zend/tests/ |
H A D | runtime_compile_time_binary_operands.phpt | 155 foreach ($input as $right) { 157 $line = prepareBinaryLine($left, $right, function() use ($left, $right, $operator) { 158 return eval("return @(\$left $operator \$right);"); 164 foreach ($input as $right) { 166 $line = prepareUnaryLine($right, function() use ($right, $operator) { 167 return eval("return @($operator \$right);");
|
H A D | assign_coalesce_007.phpt | 2 Assign coalesce: "$a[0] ??= $a" should evaluate the right $a first
|
H A D | catch_static.phpt | 6 // This could in principle be supported, but isn't right now.
|
H A D | dval_to_lval_32.phpt | 18 /* see if we're rounding negative numbers right */
|
H A D | shift_002.phpt | 2 shifting strings right
|
/php-src/ext/opcache/tests/jit/ |
H A D | bug80861.phpt | 19 public $right = null; 25 $a->right = $b; 77 $c = $c->right; 80 $c = $m->head->right; 96 $c = $c->right;
|
/php-src/main/streams/ |
H A D | filter.c | 128 …et_split(php_stream_bucket *in, php_stream_bucket **left, php_stream_bucket **right, size_t length) in php_stream_bucket_split() argument 131 *right = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); in php_stream_bucket_split() 140 (*right)->buflen = in->buflen - length; in php_stream_bucket_split() 141 (*right)->buf = pemalloc((*right)->buflen, in->is_persistent); in php_stream_bucket_split() 142 memcpy((*right)->buf, in->buf + length, (*right)->buflen); in php_stream_bucket_split() 143 (*right)->refcount = 1; in php_stream_bucket_split() 144 (*right)->own_buf = 1; in php_stream_bucket_split() 145 (*right)->is_persistent = in->is_persistent; in php_stream_bucket_split()
|
/php-src/ext/sodium/tests/ |
H A D | crypto_stream_xchacha20.phpt | 40 $right = str_repeat("\xfe", 64); 43 $stream7_unified = sodium_crypto_stream_xchacha20_xor($left . $right, $n2, $key); 47 $stream7_right = sodium_crypto_stream_xchacha20_xor_ic($right, $n2, 1, $key);
|
/php-src/Zend/tests/numeric_literal_separator/ |
H A D | numeric_literal_separator_009.phpt | 2 Invalid use: underscore right of e
|
H A D | numeric_literal_separator_005.phpt | 2 Invalid use: underscore right of period
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_substring.c | 319 PCRE2_SIZE left, right; in pcre2_substring_length_bynumber() local 344 right = match_data->ovector[stringnumber*2+1]; 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/ext/bcmath/ |
H A D | bcmath.c | 185 zend_string *left, *right; in PHP_FUNCTION() local 193 Z_PARAM_STR(right) in PHP_FUNCTION() 234 zend_string *left, *right; in PHP_FUNCTION() local 242 Z_PARAM_STR(right) in PHP_FUNCTION() 283 zend_string *left, *right; in PHP_FUNCTION() local 291 Z_PARAM_STR(right) in PHP_FUNCTION() 340 Z_PARAM_STR(right) in PHP_FUNCTION() 394 Z_PARAM_STR(right) in PHP_FUNCTION() 447 Z_PARAM_STR(right) in PHP_FUNCTION() 688 Z_PARAM_STR(right) in PHP_FUNCTION() [all …]
|
/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/date/tests/ |
H A D | bug33563.phpt | 2 Bug #33563 (strtotime('+1 month',$abc) cant get right time)
|
/php-src/ext/pdo_mysql/tests/ |
H A D | bug54929.phpt | 47 …ntax; check the manual that corresponds to your %s server version for the right syntax to use near… 54 …ntax; check the manual that corresponds to your %s server version for the right syntax to use near…
|
/php-src/ext/dom/tests/ |
H A D | DOMDocument_loadXML_variation1.phpt | 4 This test verifies the right behaviour of the LIBXML_DTDLOAD constant
|