Home
last modified time | relevance | path

Searched refs:base (Results 376 – 400 of 406) sorted by relevance

1...<<11121314151617

/PHP-8.3/
H A DUPGRADING.INTERNALS147 the base node of the node list. This function also no longer accepts -1 as the index argument.
H A DCONTRIBUTING.md48 If your pull request exhibits conflicts with the base branch, please resolve
94 base.
H A DCODING_STANDARDS.md4 PHP should follow. The code base does not yet fully follow it, but new
H A Dconfigure.ac1338 void* base = (void *)syscall(451, 0, 0x20000, 0x1);
1339 if (base != (void*)-1) {
1340 munmap(base, 0x20000);
H A Dphp.ini-production577 ; and change docref_root to the base URL of your local copy including the
1867 ; Mapping base of shared memory segments (for Windows only). All the PHP
1869 ; directive allows to manually fix the "Unable to reattach to base address"
H A Dphp.ini-development575 ; and change docref_root to the base URL of your local copy including the
1865 ; Mapping base of shared memory segments (for Windows only). All the PHP
1867 ; directive allows to manually fix the "Unable to reattach to base address"
H A DREADME.REDIST.BINS256 This file contains the base code which implements sscanf and by extension
/PHP-8.3/ext/spl/
H A Dspl_array.c774 zend_class_entry *base; in spl_array_get_debug_info() local
792 base = obj->handlers == &spl_handler_ArrayIterator in spl_array_get_debug_info()
794 zname = spl_gen_private_prop_name(base, "storage", sizeof("storage")-1); in spl_array_get_debug_info()
/PHP-8.3/ext/phar/phar/
H A Dclicommand.inc13 * @brief Abstract base console command implementation
/PHP-8.3/ext/hash/xxhash/
H A Dxxhash.h4651 xxh_u8* base = (xxh_u8*)XXH_malloc(s + align); in XXH_alignedMalloc() local
4652 if (base != NULL) { in XXH_alignedMalloc()
4659 size_t offset = align - ((size_t)base & (align - 1)); /* base % align */ in XXH_alignedMalloc()
4661 xxh_u8* ptr = base + offset; in XXH_alignedMalloc()
4683 xxh_u8* base = ptr - offset; in XXH_alignedFree() local
4684 XXH_free(base); in XXH_alignedFree()
/PHP-8.3/ext/exif/
H A Dexif.c4403 zend_string *base; in exif_read_from_impl() local
4411 base = php_basename(stream->orig_path, strlen(stream->orig_path), NULL, 0); in exif_read_from_impl()
4412 ImageInfo->FileName = estrndup(ZSTR_VAL(base), ZSTR_LEN(base)); in exif_read_from_impl()
4414 zend_string_release_ex(base, 0); in exif_read_from_impl()
/PHP-8.3/ext/soap/
H A Dphp_encoding.c1440 zval base; in to_zval_object_ex() local
1448 master_to_zval_int(&base, enc, data); in to_zval_object_ex()
1449 set_zval_property(ret, "_", &base); in to_zval_object_ex()
1494 zval base; in to_zval_object_ex() local
1503 master_to_zval_int(&base, sdlType->encode, data); in to_zval_object_ex()
1504 set_zval_property(ret, "_", &base); in to_zval_object_ex()
H A Dphp_sdl.c391 xmlChar *base = xmlNodeGetBase(trav->doc, trav); in load_wsdl_ex() local
393 if (base == NULL) { in load_wsdl_ex()
396 uri = xmlBuildURI(tmp->children->content, base); in load_wsdl_ex()
397 xmlFree(base); in load_wsdl_ex()
/PHP-8.3/ext/odbc/
H A Dconfig.m4292 [Include user defined ODBC support. DIR is ODBC install base directory
/PHP-8.3/ext/ldap/
H A Dldap_arginfo.h64 ZEND_ARG_TYPE_MASK(0, base, MAY_BE_ARRAY|MAY_BE_STRING, NULL)
/PHP-8.3/ext/standard/
H A Dbasic_functions.stub.php3146 function log(float $num, float $base = M_E): float {}
3536 function intval(mixed $value, int $base = 10): int {}
H A Dbasic_functions_arginfo.h1679 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, base, IS_DOUBLE, 0, "M_E")
2030 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, base, IS_LONG, 0, "10")
/PHP-8.3/build/
H A Dlibtool.m43104 …bjects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-impl…
3113 …bjects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-impl…
3300 # Instead, shared libraries are loaded at an image base (0x10000000 by
3303 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
3305 … $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} …
3306 …ame ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} …
5478 …eplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-impl…
5487 …eplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-impl…
5499 # Instead, shared libraries are loaded at an image base (0x10000000 by
5502 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
[all …]
/PHP-8.3/ext/reflection/
H A Dphp_reflection.c1129 …uint32_t offset, uint32_t target, zend_string *name, zend_class_entry *base, zend_string *filename… in read_attributes() argument
1156 if (base) { in read_attributes()
1169 if (!instanceof_function(ce, base)) { in read_attributes()
1187 zend_class_entry *base = NULL; in reflect_attributes() local
1199 if (NULL == (base = zend_lookup_class(name))) { in reflect_attributes()
1216 …if (FAILURE == read_attributes(return_value, attributes, scope, offset, target, name, base, filena… in reflect_attributes()
/PHP-8.3/Zend/
H A Dzend_compile.c5077 zend_loop_var *base; in zend_handle_loops_and_finally_ex() local
5083 base = zend_stack_base(&CG(loop_var_stack)); in zend_handle_loops_and_finally_ex()
5084 for (; loop_var >= base; loop_var--) { in zend_handle_loops_and_finally_ex()
5132 zend_loop_var *base; in zend_has_finally_ex() local
5138 base = zend_stack_base(&CG(loop_var_stack)); in zend_has_finally_ex()
5139 for (; loop_var >= base; loop_var--) { in zend_has_finally_ex()
H A Dzend_API.c2331 static void zend_sort_modules(void *base, size_t count, size_t siz, compare_func_t compare, swap_fu… in zend_sort_modules() argument
2333 Bucket *b1 = base; in zend_sort_modules()
/PHP-8.3/docs/
H A Drelease-process.md468 the base branches and [merged upwards as usual][] (e.g. commit the CVE fix
686 You may edit the generated files to expand on the base message, if needed.
/PHP-8.3/ext/pcre/pcre2lib/sljit/
H A DsljitNativeARM_32.c2346 #define EMIT_FPU_DATA_TRANSFER(inst, add, base, freg, offs) \ argument
2347 ((inst) | (sljit_uw)((add) << 23) | RN(base) | VD(freg) | (sljit_uw)(offs))
/PHP-8.3/ext/opcache/
H A DZendAccelerator.c3638 static void preload_sort_classes(void *base, size_t count, size_t siz, compare_func_t compare, swap… argument
3640 Bucket *b1 = base;
/PHP-8.3/ext/ffi/
H A Dffi.c7719 void zend_ffi_val_number(zend_ffi_val *val, int base, const char *str, size_t str_len) /* {{{ */ argument
7744 val->u64 = strtoull(str, NULL, base);
7753 val->i64 = strtoll(str, NULL, base);

Completed in 286 milliseconds

1...<<11121314151617