pecalloc          141 Zend/zend_hash.c 		(ht)->arBuckets = (Bucket **) pecalloc((ht)->nTableSize, sizeof(Bucket *), (ht)->persistent);	\
pecalloc           58 Zend/zend_string.c 	CG(interned_strings).arBuckets = (Bucket **) pecalloc(CG(interned_strings).nTableSize, sizeof(Bucket *), CG(interned_strings).persistent);
pecalloc          317 ext/bz2/bz2_filter.c 	data = pecalloc(1, sizeof(php_bz2_filter_data), persistent);
pecalloc          702 ext/mbstring/mbstring.c 		list = (const mbfl_encoding **)pecalloc(size, sizeof(mbfl_encoding*), persistent);
pecalloc          797 ext/mbstring/mbstring.c 		list = (const mbfl_encoding **)pecalloc(size, sizeof(mbfl_encoding*), persistent);
pecalloc          673 ext/mysqlnd/mysqlnd_alloc.c 	return pecalloc(nmemb, size, persistent);
pecalloc          318 ext/pdo/pdo_dbh.c 				pdbh = pecalloc(1, sizeof(*pdbh), 1);
pecalloc          304 ext/pdo_dblib/dblib_driver.c 	H = pecalloc(1, sizeof(*H), dbh->is_persistent);
pecalloc          653 ext/pdo_firebird/firebird_driver.c 	pdo_firebird_db_handle *H = dbh->driver_data = pecalloc(1,sizeof(*H),dbh->is_persistent);
pecalloc          577 ext/pdo_mysql/mysql_driver.c 	H = pecalloc(1, sizeof(pdo_mysql_db_handle), dbh->is_persistent);
pecalloc          602 ext/pdo_oci/oci_driver.c 	H = pecalloc(1, sizeof(*H), dbh->is_persistent);
pecalloc          398 ext/pdo_odbc/odbc_driver.c 	H = pecalloc(1, sizeof(*H), dbh->is_persistent);
pecalloc         1073 ext/pdo_pgsql/pgsql_driver.c 	H = pecalloc(1, sizeof(pdo_pgsql_db_handle), dbh->is_persistent);
pecalloc          817 ext/pdo_sqlite/sqlite_driver.c 	H = pecalloc(1, sizeof(pdo_sqlite_db_handle), dbh->is_persistent);
pecalloc         1019 ext/phar/phar.c 	mydata = pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
pecalloc          228 ext/phar/tar.c 	myphar = (phar_archive_data *) pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
pecalloc          221 ext/phar/zip.c 			mydata = pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
pecalloc         1916 ext/standard/filters.c 	data = pecalloc(1, sizeof(php_consumed_filter_data), persistent);
pecalloc         2124 ext/standard/filters.c 	data = (php_chunked_filter_data *)pecalloc(1, sizeof(php_chunked_filter_data), persistent);
pecalloc           99 ext/standard/proc_open.c 		env.envarray = (char **) pecalloc(1, sizeof(char *), is_persistent);
pecalloc          101 ext/standard/proc_open.c 		env.envp = (char *) pecalloc(4, 1, is_persistent);
pecalloc          143 ext/standard/proc_open.c 	ep = env.envarray = (char **) pecalloc(cnt + 1, sizeof(char *), is_persistent);
pecalloc          145 ext/standard/proc_open.c 	p = env.envp = (char *) pecalloc(sizeenv + 4, 1, is_persistent);
pecalloc          294 ext/zlib/zlib_filter.c 	data = pecalloc(1, sizeof(php_zlib_filter_data), persistent);
pecalloc          143 main/streams/filter.c 	*left = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent);
pecalloc          144 main/streams/filter.c 	*right = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent);