Searched refs:allocated (Results 1 – 21 of 21) sorted by relevance
/PHP-5.6/sapi/fpm/fpm/ |
H A D | fpm_arrays.h | 15 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.6/Zend/ |
H A D | zend_dynamic_array.c | 28 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 D | zend_dynamic_array.h | 29 unsigned int allocated; member
|
H A D | ZEND_CHANGES | 1065 another SQL result-set allocated in the memory, and all of the
|
/PHP-5.6/ext/ftp/tests/ |
H A D | ftp_alloc_basic2.phpt | 23 string(20) "1024 bytes allocated"
|
H A D | server.inc | 429 fputs($s, "200 " . $matches[1] . " bytes allocated\r\n");
|
/PHP-5.6/ |
H A D | README.STREAMS | 115 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 D | CODING_STANDARDS | 78 In almost all cases, memory returned to the engine must be allocated
|
H A D | php.ini-development | 1266 ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes. 1270 ; Size of a pre-allocated buffer used for reading data sent by the server in
|
H A D | php.ini-production | 1266 ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes. 1270 ; Size of a pre-allocated buffer used for reading data sent by the server in
|
H A D | NEWS | 4808 time are allocated in a single copy and never changed. 9099 . colors allocated henceforth from the resulting image overwrite the palette 9708 memory_get_peak_usage() to get memory size allocated by emalloc() or real 9709 size of memory allocated from system. (Dmitry)
|
/PHP-5.6/ext/mbstring/oniguruma/ |
H A D | regexec.c | 88 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 D | oniguruma.h | 604 int allocated; member 611 int allocated; member
|
/PHP-5.6/ext/opcache/ |
H A D | README | 147 The fast shutdown sequence doesn't free each allocated block, but lets
|
/PHP-5.6/ext/standard/ |
H A D | string.c | 1071 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.6/ext/mbstring/oniguruma/doc/ |
H A D | API | 143 reg object area is not allocated in this function.
|
/PHP-5.6/sapi/fpm/ |
H A D | www.conf.in | 278 ; %M: peak of memory allocated by PHP
|
H A D | php-fpm.conf.in | 412 ; %M: peak of memory allocated by PHP
|
/PHP-5.6/ext/pcre/pcrelib/doc/ |
H A D | pcre.txt | 6160 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.6/ext/fileinfo/tests/ |
H A D | magic | 1646 >92 belong & 2 \b, allocated 7202 >>>0x1EC ulelong <0xffffffff \b, last allocated cluster %u
|
/PHP-5.6/ext/pcre/pcrelib/ |
H A D | ChangeLog | 5708 outcome, but in this particular case used more store than had been allocated,
|
Completed in 186 milliseconds