Searched defs:safe_emalloc (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_3/ext/exif/ |
| H A D | exif.c | 94 #ifndef safe_emalloc 95 # define safe_emalloc(a,b,c) emalloc((a)*(b)+(c)) macro 1470 sections = safe_emalloc(ml, 1, 1); 1622 data = safe_emalloc(size, 1, 0); 1751 info_value->list = safe_emalloc(length, sizeof(image_info_value), 0); 1905 info_data->value.s = safe_emalloc(length, 1, 1); 2397 value_ptr = safe_emalloc(max(byte_count, 4), 1, 0); 2608 (*result) = safe_emalloc(byte_count, 1, 1); 2895 value_ptr = safe_emalloc(byte_count, 1, 0); 3713 ImageInfo->Thumbnail.data = safe_emalloc(ImageInf [all...] |
| /PHP_5_3/ext/sqlite/ |
| H A D | sqlite.c | 60 #ifndef safe_emalloc 61 # define safe_emalloc(a,b,c) emalloc((a)*(b)+(c)) macro 795 zargs = (zval ***)safe_emalloc((argc - 1), sizeof(zval **), 0); 872 zargs = (zval ***)safe_emalloc(argc, sizeof(zval **), 0); 954 zargs = (zval ***)safe_emalloc(zargc, sizeof(zval **), 0); 1790 rres->col_names = safe_emalloc(rres->ncolumns, sizeof(char *), 0); 1802 rres->table = safe_emalloc(rres->ncolumns, sizeof(char *), 0); 2439 fci.params = safe_emalloc(sizeof(zval*), ht->nNumOfElements, 0); 3167 ret = safe_emalloc(1 + stringlen / 254, 257, 3); 3401 ret = safe_emalloc( [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_alloc.h | 71 #define safe_emalloc(nmemb, size, offset) _safe_emalloc((nmemb), (size), (offset) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC) macro 123 #define safe_pemalloc(nmemb, size, offset, persistent) ((persistent)?_safe_malloc(nmemb, size, offset):safe_emalloc(nmemb, size, offset))
|
Completed in 16 milliseconds