Searched refs:safe_erealloc (Results 1 - 14 of 14) sorted by relevance
| /PHP_5_4/ext/intl/transliterator/ |
| H A D | transliterator_methods.c | 429 uresult = safe_erealloc( uresult, uresult_len, sizeof( UChar ), 1 * sizeof( UChar ) );
|
| /PHP_5_4/Zend/ |
| H A D | zend_alloc.h | 75 #define safe_erealloc(ptr, nmemb, size, offset) _safe_erealloc((ptr), (nmemb), (size), (offset) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC) macro 127 #define safe_perealloc(ptr, nmemb, size, offset, persistent) ((persistent)?_safe_realloc((ptr), (nmemb), (size), (offset)):safe_erealloc((ptr), (nmemb), (size), (offset)))
|
| H A D | zend_stream.c | 267 *buf = safe_erealloc(*buf, size, 2, 0); 274 *buf = safe_erealloc(*buf, size, 1, ZEND_MMAP_AHEAD);
|
| H A D | zend_language_scanner.c | 661 str->value.str.val = safe_erealloc(str->value.str.val, 1, str->value.str.len, ZEND_MMAP_AHEAD);
|
| H A D | zend_language_scanner.l | 659 str->value.str.val = safe_erealloc(str->value.str.val, 1, str->value.str.len, ZEND_MMAP_AHEAD);
|
| /PHP_5_4/ext/bz2/ |
| H A D | bz2.c | 566 dest = safe_erealloc(dest, 1, bzs.avail_out+1, (size_t) size ); 572 dest = safe_erealloc(dest, 1, (size_t) size, 1);
|
| /PHP_5_4/ext/exif/ |
| H A D | exif.c | 87 #ifndef safe_erealloc 88 # define safe_erealloc(p,a,b,c) erealloc(p, (a)*(b)+(c)) macro 1613 tmp = safe_erealloc(ImageInfo->file.list, (count+1), sizeof(file_section), 0); 1645 tmp = safe_erealloc(ImageInfo->file.list[section_index].data, 1, size, 0); 1685 list = safe_erealloc(image_info->info_list[section_index].list, (image_info->info_list[section_index].count+1), sizeof(image_info_data), 0); 1815 list = safe_erealloc(image_info->info_list[section_index].list, (image_info->info_list[section_index].count+1), sizeof(image_info_data), 0); 1838 list = safe_erealloc(image_info->info_list[section_index].list, (image_info->info_list[section_index].count+1), sizeof(image_info_data), 0); 1879 list = safe_erealloc(image_info->info_list[section_index].list, (image_info->info_list[section_index].count+1), sizeof(image_info_data), 0); 2483 new_data = safe_erealloc(ImageInfo->Thumbnail.data, 1, ImageInfo->Thumbnail.size, new_size); 2980 tmp_xp = (xp_field_type*)safe_erealloc(ImageInf [all...] |
| /PHP_5_4/ext/iconv/ |
| H A D | iconv.c | 517 out_buffer = (char *) safe_erealloc(out_buffer, out_size, 1, 8);
|
| /PHP_5_4/ext/imap/ |
| H A D | php_imap.c | 3931 bufferTo = safe_erealloc(bufferTo, bt_len, 1, strlen(addr->mailbox)); 3933 bufferTo = safe_erealloc(bufferTo, bt_len, 1, strlen(addr->host)); 3960 bufferCc = safe_erealloc(bufferCc, bt_len, 1, strlen(addr->mailbox)); 3962 bufferCc = safe_erealloc(bufferCc, bt_len, 1, strlen(addr->host)); 3986 bufferBcc = safe_erealloc(bufferBcc, bt_len, 1, strlen(addr->mailbox)); 3988 bufferBcc = safe_erealloc(bufferBcc, bt_len, 1, strlen(addr->host));
|
| /PHP_5_4/ext/spl/ |
| H A D | spl_heap.c | 245 heap->elements = (void **) safe_erealloc(heap->elements, sizeof(spl_ptr_heap_element), (heap->max_size), (sizeof(spl_ptr_heap_element) * (heap->max_size)));
|
| /PHP_5_4/ext/standard/ |
| H A D | metaphone.c | 147 *phoned_word = safe_erealloc(*phoned_word, 2, sizeof(char), max_buffer_len); \ 155 *phoned_word = safe_erealloc(*phoned_word, 1, sizeof(char), max_buffer_len); \
|
| H A D | html.c | 1280 replaced = safe_erealloc(replaced, maxlen , 1, 128 + 1); 1413 replaced = safe_erealloc(replaced, maxlen, 1, ent_len + 128 + 1);
|
| /PHP_5_4/ext/sybase_ct/ |
| H A D | php_sybase_ct.c | 1209 result->data = (zval **) safe_erealloc(result->data, SYBASE_ROWS_BLOCK*(++result->blocks_initialized), sizeof(zval *), 0);
|
| /PHP_5_4/main/streams/ |
| H A D | streams.c | 2366 vector = (char **) safe_erealloc(vector, vector_size, sizeof(char *), 0);
|
Completed in 52 milliseconds