Home
last modified time | relevance | path

Searched refs:allocated (Results 1 – 21 of 21) sorted by relevance

/PHP-5.5/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-5.5/Zend/
H A Dzend_dynamic_array.c28 unsigned int allocated; member
34 da->allocated = size; in zend_dynamic_array_init()
45 if (da->current == da->allocated) { in zend_dynamic_array_push()
46 da->allocated *= 2; in zend_dynamic_array_push()
47 da->array = (char *) erealloc(da->array, da->allocated*da->element_size); in zend_dynamic_array_push()
H A Dzend_dynamic_array.h29 unsigned int allocated; member
H A DZEND_CHANGES1065 another SQL result-set allocated in the memory, and all of the
/PHP-5.5/ext/ftp/tests/
H A Dftp_alloc_basic2.phpt23 string(20) "1024 bytes allocated"
H A Dserver.inc404 fputs($s, "200 " . $matches[1] . " bytes allocated\r\n");
/PHP-5.5/
H A DREADME.STREAMS115 If you want to read the contents of a stream into an allocated memory buffer,
121 This function will set buf to the address of the buffer that it allocated,
124 The buffer is allocated using pemalloc(); you need to call pefree() to
277 persistent controls how the memory is to be allocated - persistently so that
373 and free the resources you allocated for the abstract field. In the case of
375 connection and then use pefree to dispose of the struct you allocated.
377 allocated in persistent mode or not.
H A DUPGRADING.INTERNALS44 * Removed execute_data->Ts field. The VM temporary variables always allocated
51 * Removed execute_data->CVs field. The VM compiled variables always allocated
H A DCODING_STANDARDS78 In almost all cases, memory returned to the engine must be allocated
H A Dphp.ini-development1217 ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
1221 ; Size of a pre-allocated buffer used for reading data sent by the server in
H A Dphp.ini-production1217 ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
1221 ; Size of a pre-allocated buffer used for reading data sent by the server in
H A DNEWS3230 time are allocated in a single copy and never changed.
7521 . colors allocated henceforth from the resulting image overwrite the palette
8130 memory_get_peak_usage() to get memory size allocated by emalloc() or real
8131 size of memory allocated from system. (Dmitry)
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregexec.c88 node->allocated = 0; in history_node_new()
111 n = parent->allocated * 2; in history_tree_add_child()
120 parent->allocated = n; in history_tree_add_child()
179 if (region->allocated == 0) { in onig_region_resize()
186 region->allocated = n; in onig_region_resize()
195 region->allocated = n; in onig_region_resize()
217 if (at >= region->allocated) { in onig_region_set()
231 region->allocated = 0; in onig_region_init()
251 if (r->allocated > 0) { in onig_region_free()
254 r->allocated = 0; in onig_region_free()
[all …]
H A Doniguruma.h604 int allocated; member
611 int allocated; member
/PHP-5.5/ext/opcache/
H A DREADME137 The fast shutdown sequence doesn't free each allocated block, but lets
/PHP-5.5/ext/standard/
H A Dstring.c1071 int allocated = EXPLODE_ALLOC_STEP, found = 0; in php_explode_negative_limit() local
1073 char **positions = emalloc(allocated * sizeof(char *)); in php_explode_negative_limit()
1077 if (found >= allocated) { in php_explode_negative_limit()
1078 allocated = found + EXPLODE_ALLOC_STEP;/* make sure we have enough memory */ in php_explode_negative_limit()
1079 positions = erealloc(positions, allocated*sizeof(char *)); in php_explode_negative_limit()
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DAPI143 reg object area is not allocated in this function.
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in401 ; %M: peak of memory allocated by PHP
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt6160 allocated numbers as well as names, exactly as if the names were not
8506 allocated by mmap or VirtualAlloc.)
8634 allocated memory for any stack and another which allows releasing mem-
9753 Compiling a regular expression causes memory to be allocated and asso-
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic1546 >92 belong & 2 \b, allocated
6712 >>>0x1EC ulelong <0xffffffff \b, last allocated cluster %u
/PHP-5.5/ext/pcre/pcrelib/
H A DChangeLog5708 outcome, but in this particular case used more store than had been allocated,

Completed in 172 milliseconds