pecalloc          317 ext/bz2/bz2_filter.c 	data = pecalloc(1, sizeof(php_bz2_filter_data), persistent);
pecalloc          725 ext/mbstring/mbstring.c 		list = (const mbfl_encoding **)pecalloc(size, sizeof(mbfl_encoding*), persistent);
pecalloc          819 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          236 ext/mysqlnd/mysqlnd_statistics.c 	*stats = pecalloc(1, sizeof(MYSQLND_STATS), persistent);
pecalloc          240 ext/mysqlnd/mysqlnd_statistics.c 	(*stats)->values = pecalloc(statistic_count, sizeof(uint64_t), persistent);
pecalloc          241 ext/mysqlnd/mysqlnd_statistics.c 	(*stats)->triggers = pecalloc(statistic_count, sizeof(mysqlnd_stat_trigger), persistent);
pecalloc          311 ext/pdo/pdo_dbh.c 				pdbh = pecalloc(1, sizeof(*pdbh), 1);
pecalloc          355 ext/pdo_dblib/dblib_driver.c 	H = pecalloc(1, sizeof(*H), dbh->is_persistent);
pecalloc          661 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          605 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         1196 ext/pdo_pgsql/pgsql_driver.c 	H = pecalloc(1, sizeof(pdo_pgsql_db_handle), dbh->is_persistent);
pecalloc          791 ext/pdo_sqlite/sqlite_driver.c 	H = pecalloc(1, sizeof(pdo_sqlite_db_handle), dbh->is_persistent);
pecalloc         1021 ext/phar/phar.c 	mydata = pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
pecalloc          236 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         1840 ext/standard/filters.c 	data = pecalloc(1, sizeof(php_consumed_filter_data), persistent);
pecalloc         2048 ext/standard/filters.c 	data = (php_chunked_filter_data *)pecalloc(1, sizeof(php_chunked_filter_data), persistent);
pecalloc           98 ext/standard/proc_open.c 		env.envarray = (char **) pecalloc(1, sizeof(char *), is_persistent);
pecalloc          100 ext/standard/proc_open.c 		env.envp = (char *) pecalloc(4, 1, is_persistent);
pecalloc          130 ext/standard/proc_open.c 	ep = env.envarray = (char **) pecalloc(cnt + 1, sizeof(char *), is_persistent);
pecalloc          132 ext/standard/proc_open.c 	p = env.envp = (char *) pecalloc(sizeenv + 4, 1, is_persistent);
pecalloc          296 ext/zlib/zlib_filter.c 	data = pecalloc(1, sizeof(php_zlib_filter_data), persistent);
pecalloc          141 main/streams/filter.c 	*left = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent);
pecalloc          142 main/streams/filter.c 	*right = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent);