Searched refs:pemalloc (Results 1 - 25 of 54) sorted by relevance
123
| /PHP_5_3/ext/bcmath/libbcmath/src/ |
| H A D | init.c | 53 /* PHP Change: malloc() -> pemalloc(), removed free_list code */ 60 temp = (bc_num) pemalloc (sizeof(bc_struct), persistent); 68 /* PHP Change: malloc() -> pemalloc() */
|
| /PHP_5_3/ext/gd/ |
| H A D | gdcache.c | 66 head = (gdCache_head_t *)pemalloc(sizeof(gdCache_head_t), 1); 119 elem = (gdCache_element_t *)pemalloc(sizeof(gdCache_element_t), 1);
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gdhelpers.h | 20 #define gdPMalloc(ptr) pemalloc(ptr, 1)
|
| /PHP_5_3/ext/bz2/ |
| H A D | bz2_filter.c | 331 data->strm.next_in = data->inbuf = (char *) pemalloc(data->inbuf_len, persistent); 338 data->strm.next_out = data->outbuf = (char *) pemalloc(data->outbuf_len, persistent);
|
| /PHP_5_3/ext/dba/ |
| H A D | dba_cdb.c | 102 cdb = pemalloc(sizeof(dba_cdb), info->flags&DBA_PERSISTENT);
|
| H A D | dba_db1.c | 82 dba = pemalloc(sizeof(*dba), info->flags&DBA_PERSISTENT);
|
| H A D | dba_db2.c | 83 info->dbf = pemalloc(sizeof(dba_db2_data), info->flags&DBA_PERSISTENT);
|
| H A D | dba_db3.c | 97 data = pemalloc(sizeof(*data), info->flags&DBA_PERSISTENT);
|
| H A D | dba_db4.c | 135 data = pemalloc(sizeof(*data), info->flags&DBA_PERSISTENT);
|
| H A D | dba_dbm.c | 86 info->dbf = pemalloc(sizeof(dba_dbm_data), info->flags&DBA_PERSISTENT);
|
| H A D | dba_flatfile.c | 44 info->dbf = pemalloc(sizeof(flatfile), info->flags&DBA_PERSISTENT);
|
| H A D | dba_gdbm.c | 64 info->dbf = pemalloc(sizeof(dba_gdbm_data), info->flags&DBA_PERSISTENT);
|
| H A D | dba_qdbm.c | 62 info->dbf = pemalloc(sizeof(dba_qdbm_data), info->flags & DBA_PERSISTENT);
|
| /PHP_5_3/ext/interbase/ |
| H A D | php_ibase_udf.c | 148 char *code = pemalloc(remaining+1, 1);
|
| /PHP_5_3/ext/mcrypt/ |
| H A D | mcrypt_filter.c | 66 outchunk = pemalloc(chunklen, data->persistent); 255 data = pemalloc(sizeof(php_mcrypt_filter_data), persistent); 260 data->block_buffer = pemalloc(data->blocksize, persistent);
|
| /PHP_5_3/ext/standard/ |
| H A D | assert.c | 70 ASSERTG(cb) = pemalloc(new_value_length + 1, 1);
|
| H A D | filters.c | 182 if (NULL == (inst->allowed_tags = pemalloc(allowed_tags_len, persistent))) { 252 inst = pemalloc(sizeof(php_strip_tags_filter), persistent); 254 if (inst == NULL) { /* it's possible pemalloc returns NULL 1195 if (NULL == (*pretval = pemalloc(Z_STRLEN(zt) + 1, persistent))) { 1203 if (NULL == (*pretval = pemalloc(Z_STRLEN_PP(tmpval) + 1, persistent))) { 1355 retval = pemalloc(sizeof(php_conv_base64_encode), persistent); 1372 retval = pemalloc(sizeof(php_conv_base64_decode), persistent); 1407 retval = pemalloc(sizeof(php_conv_qprint_encode), persistent); 1430 retval = pemalloc(sizeof(php_conv_qprint_decode), persistent); 1525 if (NULL == (out_buf = pemalloc(out_buf_siz [all...] |
| H A D | browscap.c | 167 new_property = (zval *) pemalloc(sizeof(zval), persistent); 203 bdata->current_section = (zval *) pemalloc(sizeof(zval), persistent); 205 processed = (zval *) pemalloc(sizeof(zval), persistent); 207 unprocessed = (zval *) pemalloc(sizeof(zval), persistent); 210 section_properties = (HashTable *) pemalloc(sizeof(HashTable), persistent); 250 browdata->htab = pemalloc(sizeof *browdata->htab, persistent);
|
| /PHP_5_3/ext/zlib/ |
| H A D | zlib_filter.c | 307 data->strm.next_in = data->inbuf = (Bytef *) pemalloc(data->inbuf_len, persistent); 314 data->strm.next_out = data->outbuf = (Bytef *) pemalloc(data->outbuf_len, persistent);
|
| /PHP_5_3/main/ |
| H A D | php_ini.c | 259 option_arr = (zval *) pemalloc(sizeof(zval), 1); 262 Z_ARRVAL_P(option_arr) = (HashTable *) pemalloc(sizeof(HashTable), 1); 330 section_arr = (zval *) pemalloc(sizeof(zval), 1); 333 Z_ARRVAL_P(section_arr) = (HashTable *) pemalloc(sizeof(HashTable), 1);
|
| /PHP_5_3/main/streams/ |
| H A D | filter.c | 78 bucket = (php_stream_bucket*)pemalloc(sizeof(php_stream_bucket), is_persistent); 88 bucket->buf = pemalloc(buflen, 1); 127 retval = (php_stream_bucket*)pemalloc(sizeof(php_stream_bucket), bucket->is_persistent); 130 retval->buf = pemalloc(retval->buflen, retval->is_persistent); 150 (*left)->buf = pemalloc(length, in->is_persistent); 158 (*right)->buf = pemalloc((*right)->buflen, in->is_persistent);
|
| H A D | php_streams_int.h | 37 # define pemalloc_rel_orig(size, persistent) pemalloc((size), (persistent))
|
| /PHP_5_3/Zend/ |
| H A D | zend_llist.c | 39 zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent); 57 zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent);
|
| H A D | zend_ptr_stack.c | 30 stack->top_element = stack->elements = (void **) pemalloc(sizeof(void *)*PTR_STACK_BLOCK_SIZE, persistent);
|
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_debug.c | 864 ret = pemalloc(REAL_SIZE(size), persistent); 1207 ret = pemalloc(REAL_SIZE(length) + 1, persistent); 1242 ret = pemalloc(tmp_str.len + sizeof(size_t), persistent); 1270 return pemalloc(size, persistent);
|
Completed in 38 milliseconds
123