Home
last modified time | relevance | path

Searched refs:def (Results 101 – 125 of 140) sorted by relevance

123456

/PHP-8.1/ext/filter/
H A Dfilter.c677 zval *option, *opt, *def; in PHP_FUNCTION() local
687 (def = zend_hash_str_find_deref(Z_ARRVAL_P(opt), "default", sizeof("default") - 1)) != NULL in PHP_FUNCTION()
689 ZVAL_COPY(return_value, def); in PHP_FUNCTION()
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_trace.c682 zend_bitset use, def; in zend_jit_trace_add_phis() local
693 def = use + set_size; in zend_jit_trace_add_phis()
881 int def; in zend_jit_trace_copy_ssa_var_range() local
888 if (def >= 0) { in zend_jit_trace_copy_ssa_var_range()
931 int def; in zend_jit_trace_restrict_ssa_var_info() local
936 if (def >= 0) { in zend_jit_trace_restrict_ssa_var_info()
2664 if (def >= 0) { in zend_jit_trace_use_var()
3366 int def = phi->ssa_var; in zend_jit_trace_allocate_registers() local
3369 if (intervals[def]) { in zend_jit_trace_allocate_registers()
3374 && ssa->vars[def].use_chain == intervals[def]->range.end) { in zend_jit_trace_allocate_registers()
[all …]
/PHP-8.1/win32/build/
H A DMakefile77 $(BUILD_DIR)\$(PHPDLL).def: $(PHP_DLL_DEF_SOURCES)
78 type $(PHP_DLL_DEF_SOURCES) > $(BUILD_DIR)\$(PHPDLL).def
/PHP-8.1/Zend/Optimizer/
H A Ddfa_pass.c1068 static int zend_dfa_try_to_replace_result(zend_op_array *op_array, zend_ssa *ssa, int def, int cv_v… in zend_dfa_try_to_replace_result() argument
1070 int result_var = ssa->ops[def].result_def; in zend_dfa_try_to_replace_result()
1087 if (use > def) { in zend_dfa_try_to_replace_result()
1091 while (i > def) { in zend_dfa_try_to_replace_result()
1104 ssa->ops[def].result_def = -1; in zend_dfa_try_to_replace_result()
1106 op_array->opcodes[def].result_type = IS_UNUSED; in zend_dfa_try_to_replace_result()
1107 op_array->opcodes[def].result.var = 0; in zend_dfa_try_to_replace_result()
H A Dzend_inference.c4559 int var, def; in zend_mark_cv_references() local
4571 def = ssa->vars[var].definition; in zend_mark_cv_references()
4572 if (def >= 0 && ssa->vars[var].var < op_array->last_var) { in zend_mark_cv_references()
4573 opline = op_array->opcodes + def; in zend_mark_cv_references()
4574 if (ssa->ops[def].result_def == var) { in zend_mark_cv_references()
4586 } else if (ssa->ops[def].op1_def == var) { in zend_mark_cv_references()
4624 } else if (ssa->ops[def].op2_def == var) { in zend_mark_cv_references()
/PHP-8.1/tests/strings/
H A D001.phpt152 $tr = strtr($str, "def", "456");
/PHP-8.1/ext/ctype/tests/
H A Dctype_xdigit_variation1.phpt68 'def',
/PHP-8.1/ext/opcache/jit/dynasm/
H A Ddasm_mips.lua915 local function parse_label(label, def)
925 if def then
H A Ddynasm.lua189 local name, def = params[1], params[2] or "1"
191 map_def[name] = def
H A Ddasm_arm.lua688 local function parse_label(label, def)
698 if def then
H A Ddasm_arm64.lua578 local function parse_label(label, def)
588 if def then
H A Ddasm_ppc.lua1618 local function parse_label(label, def)
1628 if def then
/PHP-8.1/ext/pdo_mysql/
H A Dmysql_statement.c787 if (F->def) { in pdo_mysql_stmt_col_meta()
788 add_assoc_string(return_value, "mysql:def", F->def); in pdo_mysql_stmt_col_meta()
/PHP-8.1/ext/soap/
H A Dphp_sdl.c1241 attr->def = sdl_deserialize_string(in); in sdl_deserialize_attribute()
1335 type->def = sdl_deserialize_string(in); in sdl_deserialize_type()
1849 sdl_serialize_string(attr->def, out); in sdl_serialize_attribute()
1934 sdl_serialize_string(type->def, out); in sdl_serialize_type()
2621 if (pattr->def) { in make_persistent_sdl_attribute()
2622 pattr->def = strdup(pattr->def); in make_persistent_sdl_attribute()
2725 if (ptype->def) { in make_persistent_sdl_type()
2726 ptype->def = strdup(ptype->def); in make_persistent_sdl_type()
H A Dphp_encoding.c1294 } else if (model->u.element->def && !model->u.element->nillable) { in model_to_zval_object()
1296 xmlNodeSetContent(dummy, BAD_CAST(model->u.element->def)); in model_to_zval_object()
1319 } else if (model->u.element->def && !model->u.element->nillable) { in model_to_zval_object()
1321 xmlNodeSetContent(dummy, BAD_CAST(model->u.element->def)); in model_to_zval_object()
1505 } else if (attr->def) { in to_zval_object_ex()
1506 str_val = attr->def; in to_zval_object_ex()
/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_stmt_result_metadata_sqltests.phpt201 $field0->def = '';
/PHP-8.1/ext/opcache/
H A Dzend_file_cache.c605 zend_op_array *def; local
607 def = defs[i];
608 UNSERIALIZE_PTR(def);
609 zend_file_cache_serialize_op_array(def, script, info, buf);
/PHP-8.1/ext/pdo_oci/
H A Doci_statement.c594 STMT_CALL(OCIDefineByPos, (S->stmt, &S->cols[colno].def, S->err, colno+1, in oci_stmt_describe()
599 STMT_CALL(OCIDefineDynamic, (S->cols[colno].def, S->err, &S->cols[colno], in oci_stmt_describe()
/PHP-8.1/ext/fileinfo/libmagic/
H A Dsoftmagic.c151 file_fmtcheck(struct magic_set *ms, const char *desc, const char *def, in file_fmtcheck() argument
159 ptr = fmtcheck(desc, def); in file_fmtcheck()
160 if (ptr == def) in file_fmtcheck()
163 " with `%s'", file, line, desc, def); in file_fmtcheck()
/PHP-8.1/ext/mbstring/tests/
H A Dmb_strlen_variation3.phpt75 $string_ascii = 'abc def';
/PHP-8.1/build/
H A Dlibtool.m43105 # If the export-symbols file already is a .def file (1st line
3108 cp $export_symbols $output_objdir/$soname.def;
3110 echo EXPORTS > $output_objdir/$soname.def;
3111 cat $export_symbols >> $output_objdir/$soname.def;
5479 # If the export-symbols file already is a .def file (1st line
5482 cp $export_symbols $output_objdir/$soname.def;
5484 echo EXPORTS > $output_objdir/$soname.def;
5485 cat $export_symbols >> $output_objdir/$soname.def;
5487 …$CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname…
6024def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$…
[all …]
/PHP-8.1/ext/sockets/
H A Dconversions.c100 static int param_get_bool(void *ctx, const char *key, int def) in param_get_bool() argument
106 return def; in param_get_bool()
/PHP-8.1/ext/pgsql/
H A Dpgsql.c4567 zval meta, *def, *type, *not_null, *has_default, *is_enum, *val, new_val; in php_pgsql_convert() local
4598 if (!err && (def = zend_hash_find(Z_ARRVAL(meta), field)) == NULL) { in php_pgsql_convert()
4602 if (!err && (type = zend_hash_str_find(Z_ARRVAL_P(def), "type", sizeof("type") - 1)) == NULL) { in php_pgsql_convert()
4606 …if (!err && (not_null = zend_hash_str_find(Z_ARRVAL_P(def), "not null", sizeof("not null") - 1)) =… in php_pgsql_convert()
4610 …if (!err && (has_default = zend_hash_str_find(Z_ARRVAL_P(def), "has default", sizeof("has default"… in php_pgsql_convert()
4614 …if (!err && (is_enum = zend_hash_str_find(Z_ARRVAL_P(def), "is enum", sizeof("is enum") - 1)) == N… in php_pgsql_convert()
/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c1270 meta->def = packet->memory_pool->get_chunk(packet->memory_pool, len + 1); in php_mysqlnd_rset_field_read()
1271 memcpy(meta->def, p, len); in php_mysqlnd_rset_field_read()
1272 meta->def[len] = '\0'; in php_mysqlnd_rset_field_read()
/PHP-8.1/ext/intl/tests/
H A Dgrapheme.phpt101 …d . $char_a_ring_nfd . "a" . $char_a_ring_nfd . "bc" . $char_a_ring_nfd . "def", $char_a_ring_nfd …
168 …d . $char_a_ring_nfd . "a" . $char_A_ring_nfd . "bC" . $char_a_ring_nfd . "def", $char_a_ring_nfd …
234 …d . $char_a_ring_nfd . "a" . $char_a_ring_nfd . "bc" . $char_a_ring_nfd . "def", $char_a_ring_nfd …
299 …d . $char_a_ring_nfd . "a" . $char_A_ring_nfd . "bC" . $char_a_ring_nfd . "def", $char_a_ring_nfd …

Completed in 239 milliseconds

123456