Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 84) sorted by path

1234

/php-src/Zend/asm/
H A Dmake_mips32_o32_elf_gas.S88 # the previous function should have left the 16 bytes incoming argument
H A Dmake_mips64_n64_elf_gas.S87 # the previous function should have left the 16 bytes incoming argument
/php-src/Zend/tests/
H A Dbug45877.phpt2 Bug #45877 (Array key '2147483647' left as string)
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 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 Dshift_001.phpt2 shifting strings left
/php-src/Zend/tests/constexpr/
H A Dnew_not_allowed_property.phpt14 // left uninitialized. A third option is another mechanism between object creation and
/php-src/Zend/
H A Dzend_compile.c2063 zend_string *left = Z_STR_P(left_zv); in zend_ast_append_str() local
2067 size_t left_len = ZSTR_LEN(left); in zend_ast_append_str()
2070 result = zend_string_extend(left, len, 0); in zend_ast_append_str()
H A Dzend_compile.h847 zend_ast *zend_ast_append_str(zend_ast *left, zend_ast *right);
H A Dzend_ini_parser.y351 %left '|' '&' '^'
H A Dzend_language_parser.y57 %left T_LOGICAL_OR
58 %left T_LOGICAL_XOR
59 %left T_LOGICAL_AND
65 %left '?' ':'
67 %left T_BOOLEAN_OR
69 %left '|'
70 %left '^'
74 %left '.'
75 %left T_SL T_SR
76 %left '+' '-'
[all …]
/php-src/build/
H A Dlibtool.m4424 # Avoid inline document here, it may be left over
1371 # flags to be left without arguments
/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/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 …]
H A Dcom_extension_arginfo.h10 ZEND_ARG_TYPE_INFO(0, left, IS_MIXED, 0)
56 ZEND_ARG_TYPE_INFO(0, left, IS_MIXED, 0)
/php-src/ext/date/lib/
H A Dparse_tz.c582 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-src/ext/dom/lexbor/lexbor/core/
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 Davl.h30 lexbor_avl_node_t *left; member
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 Dbst.h34 lexbor_bst_entry_t *left; member
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/dom/lexbor/lexbor/css/
H A Dproperty.h72 lxb_css_property_margin_left_t left; member
80 lxb_css_property_padding_left_t left; member
/php-src/ext/dom/lexbor/lexbor/css/property/
H A Dres.h182 …ype = LXB_CSS_VALUE__LENGTH, .u.length = {.num = 0, .is_float = false}}, .left = {.type = LXB_CSS_…
230 …ype = LXB_CSS_VALUE__LENGTH, .u.length = {.num = 0, .is_float = false}}, .left = {.type = LXB_CSS_…

Completed in 104 milliseconds

1234