/PHP-8.2/ext/ffi/ |
H A D | ffi.c | 3055 if (old->kind != type->kind in zend_ffi_same_types() 7055 val->kind = MAX(val->kind, op2->kind); \ 7062 val->kind = op2->kind; \ 7075 val->kind = MAX(val->kind, op2->kind); \ 7078 val->kind = op2->kind; \ 7091 val->kind = MAX(val->kind, op2->kind); \ 7100 val->kind = op2->kind; \ 7106 val->kind = op2->kind; \ 7121 val->kind = MAX(val->kind, op2->kind); \ 7140 val->kind = MAX(val->kind, op2->kind); \ [all …]
|
/PHP-8.2/Zend/ |
H A D | zend_ast.h | 189 zend_ast_kind kind; member 198 zend_ast_kind kind; member 205 zend_ast_kind kind; member 246 zend_ast *ast = zend_ast_create_0(kind); in zend_ast_create_ex_0() 251 zend_ast *ast = zend_ast_create_1(kind, child); in zend_ast_create_ex_1() 315 return (ast->kind >> ZEND_AST_SPECIAL_SHIFT) & 1; in zend_ast_is_special() 319 return (ast->kind >> ZEND_AST_IS_LIST_SHIFT) & 1; in zend_ast_is_list() 327 ZEND_ASSERT(ast->kind == ZEND_AST_ZVAL); in zend_ast_get_zval() 337 ZEND_ASSERT(ast->kind == ZEND_AST_CONSTANT); in zend_ast_get_constant_name() 344 return ast->kind >> ZEND_AST_NUM_CHILDREN_SHIFT; in zend_ast_get_num_children() [all …]
|
H A D | zend_ast.c | 119 ast->kind = kind; in zend_ast_create_decl() 142 ast->kind = kind; in zend_ast_create_0() 155 ast->kind = kind; in zend_ast_create_1() 174 ast->kind = kind; in zend_ast_create_2() 196 ast->kind = kind; in zend_ast_create_3() 221 ast->kind = kind; in zend_ast_create_4() 249 ast->kind = kind; in zend_ast_create_5() 280 list->kind = kind; in zend_ast_create_list_0() 295 list->kind = kind; in zend_ast_create_list_1() 319 list->kind = kind; in zend_ast_create_list_2() [all …]
|
H A D | zend_vm_gen.php | 791 switch ($kind) { 1051 switch ($kind) { 1144 switch ($kind) { 1182 switch ($kind) { 1493 switch ($kind) { 1745 switch ($kind) { 2040 if ($kind != ZEND_VM_KIND_CALL && $kind != ZEND_VM_KIND_HYBRID) { 2072 if ($kind == ZEND_VM_KIND_GOTO || $kind == ZEND_VM_KIND_HYBRID) { 2107 if ($kind == ZEND_VM_KIND_CALL || $kind == ZEND_VM_KIND_HYBRID) { 2153 if ($kind == ZEND_VM_KIND_CALL || $kind == ZEND_VM_KIND_HYBRID) { [all …]
|
H A D | zend_compile.c | 2342 || ast->kind == ZEND_AST_ISSET || ast->kind == ZEND_AST_EMPTY; in zend_short_circuiting_commit() 3263 switch (kind) { in zend_compile_assign() 3430 switch (kind) { in zend_compile_compound_assign() 9224 switch (kind) { in zend_compile_assign_coalesce() 9912 return kind == ZEND_AST_ZVAL || kind == ZEND_AST_BINARY_OP in zend_is_allowed_in_const_expr() 9914 || kind == ZEND_AST_AND || kind == ZEND_AST_OR in zend_is_allowed_in_const_expr() 9917 || kind == ZEND_AST_CONDITIONAL || kind == ZEND_AST_DIM in zend_is_allowed_in_const_expr() 9918 || kind == ZEND_AST_ARRAY || kind == ZEND_AST_ARRAY_ELEM in zend_is_allowed_in_const_expr() 9920 || kind == ZEND_AST_CONST || kind == ZEND_AST_CLASS_CONST in zend_is_allowed_in_const_expr() 9924 || kind == ZEND_AST_NEW || kind == ZEND_AST_ARG_LIST in zend_is_allowed_in_const_expr() [all …]
|
H A D | zend_fibers.h | 81 void *kind; member 136 ZEND_API bool zend_fiber_init_context(zend_fiber_context *context, void *kind, zend_fiber_coroutine… 148 ZEND_ASSERT(context->kind == zend_ce_fiber && "Fiber context does not belong to a Zend fiber"); in END_EXTERN_C()
|
H A D | zend_opcode.c | 704 range->var |= kind; in emit_live_range_raw() 714 uint32_t kind; in emit_live_range() local 735 kind = ZEND_LIVE_SILENCE; in emit_live_range() 739 kind = ZEND_LIVE_ROPE; in emit_live_range() 745 kind = ZEND_LIVE_LOOP; in emit_live_range() 793 kind = ZEND_LIVE_TMPVAR; in emit_live_range() 811 kind = ZEND_LIVE_TMPVAR; in emit_live_range() 826 emit_live_range_raw(op_array, var_num, kind, start, end); in emit_live_range() 836 emit_live_range_raw(op_array, var_num, kind, start, end); in emit_live_range() 846 emit_live_range_raw(op_array, var_num, kind, start, end); in emit_live_range() [all …]
|
H A D | README.md | 128 `zend_vm_gen.php` can produce different kind of executors. You can select a 129 different opcode threading model using `--with-vm-kind=CALL|SWITCH|GOTO|HYBRID`. 137 # Default VM kind is HYBRID 138 php zend_vm_gen.php --with-vm-kind=HYBRID
|
/PHP-8.2/ext/tokenizer/ |
H A D | tokenizer.stub.php | 27 /** @param int|string|array $kind */ 28 public function is($kind): bool {} argument
|
H A D | tokenizer.c | 144 zval *kind; in PHP_METHOD() local 147 Z_PARAM_ZVAL(kind) in PHP_METHOD() 150 if (Z_TYPE_P(kind) == IS_LONG) { in PHP_METHOD() 156 RETURN_BOOL(Z_LVAL_P(id_zval) == Z_LVAL_P(kind)); in PHP_METHOD() 157 } else if (Z_TYPE_P(kind) == IS_STRING) { in PHP_METHOD() 163 RETURN_BOOL(zend_string_equals(text, Z_STR_P(kind))); in PHP_METHOD() 164 } else if (Z_TYPE_P(kind) == IS_ARRAY) { in PHP_METHOD() 167 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(kind), entry) { in PHP_METHOD() 196 …nd_argument_type_error(1, "must be of type string|int|array, %s given", zend_zval_type_name(kind)); in PHP_METHOD()
|
/PHP-8.2/ext/pdo_dblib/tests/ |
H A D | timeout.phpt | 24 // expect some kind of error code 38 // expect some kind of error code 50 // expect some kind of error code 62 // expect some kind of error code
|
/PHP-8.2/ext/standard/tests/file/windows_mb_path/ |
H A D | util.inc | 3 function get_active_cp($kind = "") 11 return sapi_windows_cp_get($kind); 47 function skip_if_wrong_cp($cp, $kind = "") 49 if (get_active_cp($kind) != $cp) {
|
/PHP-8.2/Zend/tests/type_declarations/mixed/validation/ |
H A D | mixed_parameter_weak_success.phpt | 2 Test that the mixed parameter type accepts any kind of arguments in weak mode
|
H A D | mixed_parameter_strict_success.phpt | 2 Test that the mixed parameter type accepts any kind of arguments in strict mode
|
H A D | mixed_return_weak_success.phpt | 2 Test that the mixed return type is compatible with any kind of return value in weak mode
|
H A D | mixed_return_strict_success.phpt | 2 Test that the mixed return type is compatible with any kind of return value in strict mode
|
H A D | mixed_property_weak_success.phpt | 2 Test that the mixed property type accepts any kind of value in weak mode
|
H A D | mixed_property_strict_success.phpt | 2 Test that the mixed property type accepts any kind of value in strict mode
|
/PHP-8.2/ext/gd/tests/ |
H A D | imagegammacorrect_variation2.phpt | 32 $kind = $constructor === 'imagecreate' ? 'palette' : 'truecolor'; 33 echo "$kind gamma ($in, $out): ";
|
/PHP-8.2/ext/date/tests/ |
H A D | DateTime_data-absolute.inc | 5 * in a userland package. Please be so kind as to leave them.
|
H A D | DateTime_data-massive.inc | 5 * in a userland package. Please be so kind as to leave them.
|
/PHP-8.2/ext/pdo/ |
H A D | php_pdo_int.h | 59 bool pdo_hash_methods(pdo_dbh_object_t *dbh, int kind);
|
/PHP-8.2/ext/tokenizer/tests/ |
H A D | PhpToken_methods.phpt | 113 PhpToken::is(): Argument #1 ($kind) must be of type string|int|array, float given 114 PhpToken::is(): Argument #1 ($kind) must only have elements of type string|int, float given
|
/PHP-8.2/ext/soap/ |
H A D | php_sdl.h | 163 sdlContentKind kind; member 197 sdlTypeKind kind; member
|
H A D | php_schema.c | 340 newType->kind = XSD_TYPEKIND_SIMPLE; in schema_simpleType() 371 newType->kind = XSD_TYPEKIND_SIMPLE; in schema_simpleType() 401 cur_type->kind = XSD_TYPEKIND_LIST; in schema_simpleType() 1039 newModel->kind = XSD_CONTENT_ALL; in schema_all() 1188 newModel->kind = XSD_CONTENT_ALL; in schema_group() 1317 newModel->kind = XSD_CONTENT_ANY; in schema_any() 2203 switch (model->kind) { in schema_content_model_fixup() 2226 model->kind = XSD_CONTENT_ALL; in schema_content_model_fixup() 2255 type->kind = tmp->kind; in schema_type_fixup() 2349 switch (tmp->kind) { in delete_model() [all …]
|