Searched defs:safe_erealloc (Results 1 - 2 of 2) sorted by relevance
| /PHP_TRUNK/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)))
|
| /PHP_TRUNK/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...] |
Completed in 10 milliseconds