Home
last modified time | relevance | path

Searched refs:allocated (Results 1 – 25 of 34) sorted by last modified time

12

/php-src/
H A DUPGRADING39 node could not be allocated. They consistently throw an INVALID_STATE_ERR
H A Dphp.ini-development1223 ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
1226 ; Size of a pre-allocated buffer used for reading data sent by the server in
H A Dphp.ini-production1225 ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
1228 ; Size of a pre-allocated buffer used for reading data sent by the server in
H A DCODING_STANDARDS.md74 In almost all cases, memory returned to the engine must be allocated using
/php-src/ext/dom/lexbor/lexbor/core/
H A Ddobject.c36 dobject->allocated = 0UL; in lexbor_dobject_init()
67 dobject->allocated = 0UL; in lexbor_dobject_clean()
96 dobject->allocated++; in lexbor_dobject_alloc()
117 dobject->allocated++; in lexbor_dobject_alloc()
146 dobject->allocated--; in lexbor_dobject_free()
159 if (pos >= dobject->allocated) { in lexbor_dobject_by_absolute_position()
H A Ddobject.h23 size_t allocated; member
67 return dobject->allocated; in lexbor_dobject_allocated()
/php-src/ext/mbstring/tests/
H A Dmb_encode_mimeheader_basic4.phpt119 // the input string), but we aim to only use a constant amount of temporarily allocated memory
/php-src/ext/standard/
H A Durl_scanner_ex.re141 /* Note: the hash table is persistently allocated, so the strings must be too! */
H A Dstring.c893 size_t allocated = EXPLODE_ALLOC_STEP, found = 0; in php_explode_negative_limit() local
895 const char **positions = emalloc(allocated * sizeof(char *)); in php_explode_negative_limit()
899 if (found >= allocated) { in php_explode_negative_limit()
900 allocated = found + EXPLODE_ALLOC_STEP;/* make sure we have enough memory */ in php_explode_negative_limit()
901 positions = erealloc(ZEND_VOIDP(positions), allocated*sizeof(char *)); in php_explode_negative_limit()
/php-src/Zend/tests/
H A Dgc_050.phpt26 var_dump($weakO->get() !== null); // verify if kept allocated
H A Dgh12073.phpt2 GH-12073: Freeing of non-ZMM pointer of incompletely allocated closure
/php-src/Zend/asm/
H A Dmake_sparc64_sysv_elf_gas.S25 # shift address in %i0 (allocated stack) to lower 16 byte boundary
/php-src/docs/source/core/data-structures/
H A Dreference-counting.rst14 a reference count to each allocated value, often abbreviated as refcount or RC. Whenever a reference
207 #define GC_PERSISTENT (1<<7) /* allocated using malloc */
221 The ``GC_PERSISTENT`` flag indicates that the value was allocated using ``malloc``, instead of PHPs
H A Dzend_string.rst51 string at compile time. The ``persistent`` parameter indicates whether the string is allocated using
57 string was allocated. After releasing the string, you must not access any of its fields anymore, as
/php-src/docs-old/
H A Dstreams.md116 If you want to read the contents of a stream into an allocated memory buffer,
124 This function will set buf to the address of the buffer that it allocated, which
127 is allocated using `pemalloc()`. You need to call `pefree()` to release the
301 * `persistent` controls how the memory is to be allocated - persistently so that
401 and free the resources you allocated for the abstract field. In the case of the
403 connection and then use pefree to dispose of the struct you allocated. You may
404 read the stream->persistent field to determine if your struct was allocated in
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_convert.c1124 PCRE2_UCHAR *allocated; in pcre2_pattern_convert() local
1153 allocated = PRIV(memctl_malloc)(sizeof(pcre2_memctl) + in pcre2_pattern_convert()
1155 if (allocated == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_pattern_convert()
1156 *buffptr = (PCRE2_UCHAR *)(((char *)allocated) + sizeof(pcre2_memctl)); in pcre2_pattern_convert()
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます2525 >>88 belong & 2 \b, allocated
13410 >>>0x1EC ulelong <0xffffffff \b, last allocated cluster %u
H A Dmagic2525 >>88 belong & 2 \b, allocated
13410 >>>0x1EC ulelong <0xffffffff \b, last allocated cluster %u
/php-src/sapi/fpm/
H A Dwww.conf.in320 ; %M: peak of memory allocated by PHP
/php-src/ext/pdo_pgsql/tests/
H A Dbug75402.phpt70 // With the following option memory is de-allocated
/php-src/ext/ftp/tests/
H A Dserver.inc451 fputs($s, "200 " . $matches[1] . " bytes allocated\r\n");
/php-src/sapi/fpm/fpm/
H A Dfpm_arrays.h15 size_t allocated; member
20 void *allocated = 0; in fpm_array_init() local
29 allocated = a; in fpm_array_init()
37 free(allocated); in fpm_array_init()
41 a->allocated = initial_num; in fpm_array_init()
87 if (a->used == a->allocated) { in fpm_array_push()
88 size_t new_allocated = a->allocated ? a->allocated * 2 : 20; in fpm_array_push()
96 a->allocated = new_allocated; in fpm_array_push()
112 a->used = a->allocated = 0; in fpm_array_free()
/php-src/sapi/phpdbg/
H A Dphpdbg_sigsafe.c11 if (EXPECTED(size <= PHPDBG_SIGSAFE_MEM_SIZE && !PHPDBG_G(sigsafe_mem).allocated)) { in ZEND_EXTERN_MODULE_GLOBALS()
12 PHPDBG_G(sigsafe_mem).allocated = 1; in ZEND_EXTERN_MODULE_GLOBALS()
40 mem->allocated = 0; in phpdbg_set_sigsafe_mem()
H A Dphpdbg_sigsafe.h10 bool allocated; member
/php-src/sapi/embed/
H A DREADME.md125 * allocated so any INI settings added via this callback will have the lowest

Completed in 184 milliseconds

12