Home
last modified time | relevance | path

Searched refs:kind (Results 1 – 25 of 88) sorted by relevance

1234

/PHP-8.2/ext/ffi/
H A Dffi.c3049 if (old->kind != type->kind in zend_ffi_same_types()
7049 val->kind = MAX(val->kind, op2->kind); \
7056 val->kind = op2->kind; \
7069 val->kind = MAX(val->kind, op2->kind); \
7072 val->kind = op2->kind; \
7085 val->kind = MAX(val->kind, op2->kind); \
7094 val->kind = op2->kind; \
7100 val->kind = op2->kind; \
7115 val->kind = MAX(val->kind, op2->kind); \
7134 val->kind = MAX(val->kind, op2->kind); \
[all …]
/PHP-8.2/Zend/
H A Dzend_ast.h189 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 Dzend_ast.c119 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 Dzend_vm_gen.php791 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 Dzend_compile.c2342 || 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()
9217 switch (kind) { in zend_compile_assign_coalesce()
9905 return kind == ZEND_AST_ZVAL || kind == ZEND_AST_BINARY_OP in zend_is_allowed_in_const_expr()
9907 || kind == ZEND_AST_AND || kind == ZEND_AST_OR in zend_is_allowed_in_const_expr()
9910 || kind == ZEND_AST_CONDITIONAL || kind == ZEND_AST_DIM in zend_is_allowed_in_const_expr()
9911 || kind == ZEND_AST_ARRAY || kind == ZEND_AST_ARRAY_ELEM in zend_is_allowed_in_const_expr()
9913 || kind == ZEND_AST_CONST || kind == ZEND_AST_CLASS_CONST in zend_is_allowed_in_const_expr()
9917 || kind == ZEND_AST_NEW || kind == ZEND_AST_ARG_LIST in zend_is_allowed_in_const_expr()
[all …]
H A Dzend_fibers.h81 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 Dzend_opcode.c704 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 DREADME.md128 `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 Dtokenizer.stub.php27 /** @param int|string|array $kind */
28 public function is($kind): bool {} argument
H A Dtokenizer.c144 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 Dtimeout.phpt24 // 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 Dutil.inc3 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 Dmixed_parameter_weak_success.phpt2 Test that the mixed parameter type accepts any kind of arguments in weak mode
H A Dmixed_parameter_strict_success.phpt2 Test that the mixed parameter type accepts any kind of arguments in strict mode
H A Dmixed_return_weak_success.phpt2 Test that the mixed return type is compatible with any kind of return value in weak mode
H A Dmixed_return_strict_success.phpt2 Test that the mixed return type is compatible with any kind of return value in strict mode
H A Dmixed_property_weak_success.phpt2 Test that the mixed property type accepts any kind of value in weak mode
H A Dmixed_property_strict_success.phpt2 Test that the mixed property type accepts any kind of value in strict mode
/PHP-8.2/ext/gd/tests/
H A Dimagegammacorrect_variation2.phpt32 $kind = $constructor === 'imagecreate' ? 'palette' : 'truecolor';
33 echo "$kind gamma ($in, $out): ";
/PHP-8.2/ext/date/tests/
H A DDateTime_data-absolute.inc5 * in a userland package. Please be so kind as to leave them.
H A DDateTime_data-massive.inc5 * in a userland package. Please be so kind as to leave them.
/PHP-8.2/ext/pdo/
H A Dphp_pdo_int.h59 bool pdo_hash_methods(pdo_dbh_object_t *dbh, int kind);
/PHP-8.2/ext/tokenizer/tests/
H A DPhpToken_methods.phpt113 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 Dphp_sdl.h163 sdlContentKind kind; member
197 sdlTypeKind kind; member
H A Dphp_schema.c340 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 …]

Completed in 129 milliseconds

1234