Home
last modified time | relevance | path

Searched refs:old (Results 51 – 75 of 127) sorted by relevance

123456

/PHP-8.0/ext/xml/tests/
H A Dxml_set_start_namespace_decl_handler_basic.phpt14 <aw1:para>Any old text.</aw1:para>
H A Dbug26614.phpt18 see and what good old Expat reported just fine ...
H A Dbug26614_libxml.phpt18 see and what good old Expat reported just fine ...
/PHP-8.0/ext/calendar/
H A Dcalendar.c385 char *p, old[18], *endofalafim; in heb_number_to_chars() local
387 p = endofalafim = old; in heb_number_to_chars()
467 *ret = estrndup(old, (p - old) + 1); in heb_number_to_chars()
/PHP-8.0/ext/opcache/
H A Dzend_accelerator_util_funcs.c30 # define accel_xlat_set(old, new) zend_hash_index_add_new_ptr(&ZCG(bind_hash), (zend_ulong)(zend_ui… argument
31 # define accel_xlat_get(old) zend_hash_index_find_ptr(&ZCG(bind_hash), (zend_ulong)(zend_uintptr_t… argument
33 # define accel_xlat_set(old, new) zend_hash_str_add_new_ptr(&ZCG(bind_hash), (char*)&(old), sizeof(… argument
34 # define accel_xlat_get(old) zend_hash_str_find_ptr(&ZCG(bind_hash), (char*)&(old), sizeof(void… argument
H A Dzend_shared_alloc.c548 void zend_shared_alloc_register_xlat_entry(const void *old, const void *new) in zend_shared_alloc_register_xlat_entry() argument
550 zend_ulong key = (zend_ulong)old; in zend_shared_alloc_register_xlat_entry()
556 void *zend_shared_alloc_get_xlat_entry(const void *old) in zend_shared_alloc_get_xlat_entry() argument
559 zend_ulong key = (zend_ulong)old; in zend_shared_alloc_get_xlat_entry()
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_errno_oo.phpt26 printf("[003] Failed to drop old test table: [%d] %s\n", $mysqli->errno, $mysqli->error);
H A Dmysqli_error.phpt22 …printf("[005] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
H A Dmysqli_error_oo.phpt28 printf("[004] Failed to drop old test table: [%d] %s\n", $mysqli->errno, $mysqli->error);
H A Dbug52891.phpt108 …printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link…
112 …printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link…
H A Dbug53503.phpt60 …printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link…
H A Dmysqli_real_escape_string_eucjpms.phpt30 printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link),
H A Dmysqli_real_escape_string_euckr.phpt29 printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link),
H A Dmysqli_real_escape_string_gb2312.phpt30 printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link),
H A Dmysqli_real_escape_string_gbk.phpt30 printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link),
H A Dbug77956.phpt52 …printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link…
H A Dbug68077.phpt73 …printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link…
/PHP-8.0/ext/zip/tests/
H A Doo_setmtime.phpt7 if (!method_exists('ZipArchive', 'setMtimeName')) die('skip libzip too old');
/PHP-8.0/ext/pgsql/tests/
H A D98old_api.phpt2 PostgreSQL old api
/PHP-8.0/ext/oci8/tests/
H A Ddrcp_scope4.phpt21 // get old behavior
H A Dpassword.phpt37 // Despite using the old password this connect should succeed and return the original resource
H A Dpassword_2.phpt36 // Despite using the old password this connect should succeed and return the original resource
/PHP-8.0/ext/imap/
H A Dconfig.m4139 ac_cv_utf8_mime2text=old
167 if test "$ac_cv_u8t_decompose" = "yes" && test "$ac_cv_utf8_mime2text" = "old"; then
168 …AC_MSG_ERROR([utf8_mime2text() has old signature, but U8T_CANONICAL is present. This should not ha…
/PHP-8.0/ext/opcache/Optimizer/
H A Dzend_ssa.c1528 void zend_ssa_rename_var_uses(zend_ssa *ssa, int old, int new, zend_bool update_types) /* {{{ */ in zend_ssa_rename_var_uses() argument
1530 zend_ssa_var *old_var = &ssa->vars[old]; in zend_ssa_rename_var_uses()
1535 ZEND_ASSERT(old >= 0 && new >= 0); in zend_ssa_rename_var_uses()
1536 ZEND_ASSERT(old != new); in zend_ssa_rename_var_uses()
1551 if (ssa_op->result_use == old) { in zend_ssa_rename_var_uses()
1557 if (ssa_op->result_use == old) { in zend_ssa_rename_var_uses()
1560 } else if (ssa_op->op1_use == old) { in zend_ssa_rename_var_uses()
1568 if (ssa_op->result_use == old) { in zend_ssa_rename_var_uses()
1571 if (ssa_op->op1_use == old) { in zend_ssa_rename_var_uses()
1574 if (ssa_op->op2_use == old) { in zend_ssa_rename_var_uses()
[all …]
/PHP-8.0/ext/ffi/
H A Dffi.c2973 if (old == type) { in zend_ffi_same_types()
2977 if (old->kind != type->kind in zend_ffi_same_types()
2978 || old->size != type->size in zend_ffi_same_types()
2979 || old->align != type->align in zend_ffi_same_types()
2980 || old->attr != type->attr) { in zend_ffi_same_types()
2984 switch (old->kind) { in zend_ffi_same_types()
3030 } else if (old->func.args) { in zend_ffi_same_types()
3055 if (old->kind != sym->kind || old->is_const != sym->is_const) { in zend_ffi_same_symbols()
3060 if (old->value != sym->value) { in zend_ffi_same_symbols()
3071 if (old->kind != tag->kind) { in zend_ffi_same_tags()
[all …]

Completed in 58 milliseconds

123456