Home
last modified time | relevance | path

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

1234

/PHP-8.3/ext/ffi/
H A Dffi.c3076 if (old->kind != type->kind in zend_ffi_same_types()
7120 val->kind = MAX(val->kind, op2->kind); \
7127 val->kind = op2->kind; \
7140 val->kind = MAX(val->kind, op2->kind); \
7143 val->kind = op2->kind; \
7156 val->kind = MAX(val->kind, op2->kind); \
7165 val->kind = op2->kind; \
7171 val->kind = op2->kind; \
7186 val->kind = MAX(val->kind, op2->kind); \
7205 val->kind = MAX(val->kind, op2->kind); \
[all …]
/PHP-8.3/Zend/
H A Dzend_ast.h190 zend_ast_kind kind; member
199 zend_ast_kind kind; member
206 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()
320 return (ast->kind >> ZEND_AST_SPECIAL_SHIFT) & 1; in zend_ast_is_special()
332 ZEND_ASSERT(ast->kind == ZEND_AST_ZVAL); in zend_ast_get_zval()
342 ZEND_ASSERT(ast->kind == ZEND_AST_CONSTANT); in zend_ast_get_constant_name()
349 return ast->kind >> ZEND_AST_NUM_CHILDREN_SHIFT; in zend_ast_get_num_children()
352 if (ast->kind == ZEND_AST_ZVAL) { in zend_ast_get_lineno()
[all …]
H A Dzend_ast.c119 ast->kind = kind; in zend_ast_create_decl()
141 ast->kind = kind; in zend_ast_create_0()
154 ast->kind = kind; in zend_ast_create_1()
173 ast->kind = kind; in zend_ast_create_2()
195 ast->kind = kind; in zend_ast_create_3()
220 ast->kind = kind; in zend_ast_create_4()
248 ast->kind = kind; in zend_ast_create_5()
279 list->kind = kind; in zend_ast_create_list_0()
294 list->kind = kind; in zend_ast_create_list_1()
318 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.c2468 || ast->kind == ZEND_AST_ISSET || ast->kind == ZEND_AST_EMPTY; in zend_short_circuiting_commit()
3385 switch (kind) { in zend_compile_assign()
3552 switch (kind) { in zend_compile_compound_assign()
9400 switch (kind) { in zend_compile_assign_coalesce()
10092 return kind == ZEND_AST_ZVAL || kind == ZEND_AST_BINARY_OP in zend_is_allowed_in_const_expr()
10094 || kind == ZEND_AST_AND || kind == ZEND_AST_OR in zend_is_allowed_in_const_expr()
10097 || kind == ZEND_AST_CONDITIONAL || kind == ZEND_AST_DIM in zend_is_allowed_in_const_expr()
10098 || kind == ZEND_AST_ARRAY || kind == ZEND_AST_ARRAY_ELEM in zend_is_allowed_in_const_expr()
10100 || kind == ZEND_AST_CONST || kind == ZEND_AST_CLASS_CONST in zend_is_allowed_in_const_expr()
10104 || 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 zend_result zend_fiber_init_context(zend_fiber_context *context, void *kind, zend_fiber_co…
152 ZEND_ASSERT(context->kind == zend_ce_fiber && "Fiber context does not belong to a Zend fiber"); in END_EXTERN_C()
H A Dzend_opcode.c715 range->var |= kind; in emit_live_range_raw()
725 uint32_t kind; in emit_live_range() local
746 kind = ZEND_LIVE_SILENCE; in emit_live_range()
750 kind = ZEND_LIVE_ROPE; in emit_live_range()
756 kind = ZEND_LIVE_LOOP; in emit_live_range()
804 kind = ZEND_LIVE_TMPVAR; in emit_live_range()
822 kind = ZEND_LIVE_TMPVAR; in emit_live_range()
837 emit_live_range_raw(op_array, var_num, kind, start, end); in emit_live_range()
847 emit_live_range_raw(op_array, var_num, kind, start, end); in emit_live_range()
857 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.3/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 …d_argument_type_error(1, "must be of type string|int|array, %s given", zend_zval_value_name(kind)); in PHP_METHOD()
/PHP-8.3/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.3/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.3/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.3/ext/gd/tests/
H A Dimagegammacorrect_variation2.phpt32 $kind = $constructor === 'imagecreate' ? 'palette' : 'truecolor';
33 echo "$kind gamma ($in, $out): ";
/PHP-8.3/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.3/ext/pdo/
H A Dphp_pdo_int.h59 bool pdo_hash_methods(pdo_dbh_object_t *dbh, int kind);
/PHP-8.3/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.3/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