Searched refs:pecalloc (Results 1 - 19 of 19) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | zend_alloc.h | 125 #define pecalloc(nmemb, size, persistent) ((persistent)?__zend_calloc((nmemb), (size)):ecalloc((nmemb), (size))) macro
|
| H A D | zend_string.c | 58 CG(interned_strings).arBuckets = (Bucket **) pecalloc(CG(interned_strings).nTableSize, sizeof(Bucket *), CG(interned_strings).persistent);
|
| H A D | zend_hash.c | 141 (ht)->arBuckets = (Bucket **) pecalloc((ht)->nTableSize, sizeof(Bucket *), (ht)->persistent); \
|
| /PHP_TRUNK/ext/bz2/ |
| H A D | bz2_filter.c | 318 data = pecalloc(1, sizeof(php_bz2_filter_data), persistent);
|
| /PHP_TRUNK/ext/mbstring/ |
| H A D | mbstring.c | 702 list = (const mbfl_encoding **)pecalloc(size, sizeof(mbfl_encoding*), persistent); 797 list = (const mbfl_encoding **)pecalloc(size, sizeof(mbfl_encoding*), persistent);
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_dbh.c | 318 pdbh = pecalloc(1, sizeof(*pdbh), 1);
|
| /PHP_TRUNK/ext/pdo_dblib/ |
| H A D | dblib_driver.c | 277 H = pecalloc(1, sizeof(*H), dbh->is_persistent);
|
| /PHP_TRUNK/ext/pdo_firebird/ |
| H A D | firebird_driver.c | 657 pdo_firebird_db_handle *H = dbh->driver_data = pecalloc(1,sizeof(*H),dbh->is_persistent);
|
| /PHP_TRUNK/ext/pdo_odbc/ |
| H A D | odbc_driver.c | 398 H = pecalloc(1, sizeof(*H), dbh->is_persistent);
|
| /PHP_TRUNK/ext/pdo_pgsql/ |
| H A D | pgsql_driver.c | 1044 H = pecalloc(1, sizeof(pdo_pgsql_db_handle), dbh->is_persistent);
|
| /PHP_TRUNK/ext/pdo_sqlite/ |
| H A D | sqlite_driver.c | 817 H = pecalloc(1, sizeof(pdo_sqlite_db_handle), dbh->is_persistent);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | filters.c | 1877 data = pecalloc(1, sizeof(php_consumed_filter_data), persistent); 2085 data = (php_chunked_filter_data *)pecalloc(1, sizeof(php_chunked_filter_data), persistent);
|
| H A D | proc_open.c | 99 env.envarray = (char **) pecalloc(1, sizeof(char *), is_persistent); 101 env.envp = (char *) pecalloc(4, 1, is_persistent); 134 ep = env.envarray = (char **) pecalloc(cnt + 1, sizeof(char *), is_persistent); 136 p = env.envp = (char *) pecalloc(sizeenv + 4, 1, is_persistent);
|
| /PHP_TRUNK/main/streams/ |
| H A D | filter.c | 143 *left = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); 144 *right = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent);
|
| /PHP_TRUNK/ext/zlib/ |
| H A D | zlib_filter.c | 294 data = pecalloc(1, sizeof(php_zlib_filter_data), persistent);
|
| /PHP_TRUNK/ext/phar/ |
| H A D | phar.c | 1030 mydata = pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
|
| H A D | tar.c | 225 myphar = (phar_archive_data *) pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
|
| H A D | zip.c | 221 mydata = pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_alloc.c | 673 return pecalloc(nmemb, size, persistent);
|
Completed in 40 milliseconds