| /PHP_5_3/ext/bcmath/libbcmath/src/ |
| H A D | div.c | 130 num1 = (unsigned char *) safe_emalloc (1, n1->n_len+n1->n_scale, extra+2); 136 num2 = (unsigned char *) safe_emalloc (1, len2, 1); 167 mval = (unsigned char *) safe_emalloc (1, len2, 1);
|
| H A D | num2str.c | 54 str = (char *) safe_emalloc (1, num->n_len + num->n_scale, 2 + signch); 56 str = (char *) safe_emalloc (1, num->n_len, 1 + signch);
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd_color.c | 36 buf = (unsigned long *)safe_emalloc(sizeof(unsigned long), 5 * im2->colorsTotal, 0);
|
| H A D | gd_png.c | 322 image_data = (png_bytep) safe_emalloc(rowbytes, height, 0); 324 row_pointers = (png_bytepp) safe_emalloc(height, sizeof(png_bytep), 0); 688 row_pointers = safe_emalloc(sizeof(png_bytep), height, 0); 691 *prow_pointers = (png_bytep) safe_emalloc(width, channels, 0); 729 row_pointers = safe_emalloc(height, sizeof(png_bytep), 0);
|
| H A D | gdxpm.c | 40 colors = (int *) safe_emalloc(number, sizeof(int), 0);
|
| H A D | wbmp.c | 128 if ((wbmp->bitmap = (int *) safe_emalloc(sizeof(int), width * height, 0)) == NULL) 195 if ((wbmp->bitmap = (int *) safe_emalloc((size_t)wbmp->width * wbmp->height, sizeof(int), 0)) == NULL)
|
| /PHP_5_3/ext/intl/ |
| H A D | intl_common.h | 31 # define eumalloc(size) (UChar*)safe_emalloc(size, sizeof(UChar), 0)
|
| /PHP_5_3/ext/intl/msgformat/ |
| H A D | msgformat_format.c | 54 fargs = safe_emalloc(count, sizeof(zval *), 0);
|
| /PHP_5_3/ext/com_dotnet/ |
| H A D | com_olechar.c | 48 olestring = (OLECHAR*)safe_emalloc(string_len, sizeof(OLECHAR), 0); 77 string = (char*)safe_emalloc(length, sizeof(char), 0);
|
| H A D | com_saproxy.c | 110 args = safe_emalloc(proxy->dimensions + 1, sizeof(zval *), 0); 170 indices = safe_emalloc(dims, sizeof(LONG), 0); 222 zval **args = safe_emalloc(proxy->dimensions + 2, sizeof(zval *), 0); 245 indices = safe_emalloc(dims, sizeof(LONG), 0); 429 cloneproxy->indices = safe_emalloc(cloneproxy->dimensions, sizeof(zval *), 0); 453 proxy->indices = safe_emalloc(proxy->dimensions, sizeof(zval *), 0); 573 I->indices = safe_emalloc(proxy->dimensions + 1, sizeof(LONG), 0);
|
| /PHP_5_3/ext/dba/ |
| H A D | dba_cdb.c | 166 new_entry = safe_emalloc(len, 1, 1); 271 key = safe_emalloc(klen, 1, 1); 303 key = safe_emalloc(klen, 1, 1);
|
| /PHP_5_3/ext/ereg/ |
| H A D | ereg.c | 256 buf = (char *)safe_emalloc(buf_len, sizeof(char), 0); 268 message = (char *)safe_emalloc((buf_len + len + 2), sizeof(char), 0); 438 buf = safe_emalloc(buf_len, sizeof(char), 0); 514 nbuf = safe_emalloc(buf_len, sizeof(char), 0); 529 nbuf = safe_emalloc(buf_len, sizeof(char), 0); 742 tmp = safe_emalloc(string_len, 4, 1);
|
| /PHP_5_3/ext/filter/ |
| H A D | callback_filter.c | 36 args = safe_emalloc(sizeof(zval **), 1, 0);
|
| H A D | sanitizing_filters.c | 90 p = str = (unsigned char *) safe_emalloc(3, Z_STRLEN_P(value), 1); 121 buf = safe_emalloc(1, Z_STRLEN_P(value) + 1, 1); 162 buf = safe_emalloc(1, Z_STRLEN_P(value) + 1, 1);
|
| /PHP_5_3/ext/mysqli/ |
| H A D | mysqli_embedded.c | 55 arguments = safe_emalloc(sizeof(char *), argc + 1, 0); 76 groups = safe_emalloc(sizeof(char *), zend_hash_num_elements(HASH_OF(grps)) + 1, 0); 94 groups = safe_emalloc(sizeof(char *), 1, 0);
|
| /PHP_5_3/ext/pdo_dblib/ |
| H A D | dblib_driver.c | 147 *quoted = q = safe_emalloc(2, unquotedlen, 3);
|
| /PHP_5_3/ext/sqlite/ |
| H A D | sess_sqlite.c | 149 binary = safe_emalloc(1 + vallen / 254, 257, 3);
|
| /PHP_5_3/ext/standard/ |
| H A D | base64.c | 69 result = (unsigned char *) safe_emalloc((length + 2) / 3, 4 * sizeof(char), 1); 150 result = (unsigned char *)safe_emalloc(length, 1, 1);
|
| H A D | levenshtein.c | 45 p1 = safe_emalloc((l2 + 1), sizeof(int), 0); 46 p2 = safe_emalloc((l2 + 1), sizeof(int), 0);
|
| H A D | metaphone.c | 189 *phoned_word = safe_emalloc(sizeof(char), word_len, 1); 192 *phoned_word = safe_emalloc(sizeof(char), max_phonemes, 1);
|
| H A D | quot_print.c | 154 ret = safe_emalloc(1, 3 * length + 3 * (((3 * length)/PHP_QPRINT_MAXL) + 1), 0);
|
| H A D | scanf.c | 170 cset->chars = (char *) safe_emalloc(sizeof(char), (end - format - 1), 0); 172 cset->ranges = (struct Range *) safe_emalloc(sizeof(struct Range), nranges, 0); 327 nassign = (int*)safe_emalloc(sizeof(int), numVars, 0); 502 nassign = (void *)safe_emalloc(nspace, sizeof(int), 0);
|
| H A D | uuencode.c | 74 p = *dest = safe_emalloc((size_t) ceil(src_len * 1.38), 1, 46); 132 p = *dest = safe_emalloc((size_t) ceil(src_len * 0.75), 1, 1);
|
| /PHP_5_3/ext/sysvmsg/ |
| H A D | sysvmsg.c | 343 messagebuffer = (struct php_msgbuf *) safe_emalloc(maxsize, 1, sizeof(struct php_msgbuf)); 418 messagebuffer = safe_emalloc(msg_var.len, 1, sizeof(struct php_msgbuf)); 444 messagebuffer = safe_emalloc(message_len, 1, sizeof(struct php_msgbuf));
|
| /PHP_5_3/ext/phar/ |
| H A D | dirstream.c | 243 entry = (char *) safe_emalloc(found - str_key, 1, 1); 248 entry = (char *) safe_emalloc(keylen, 1, 1); 280 entry = (char *) safe_emalloc(found - save + dirlen, 1, 1); 287 entry = (char *) safe_emalloc(keylen - dirlen, 1, 1);
|