alloc_len         177 ext/oci8/oci8_lob.c 			if ((*(ctx->lob_len) + lenp) > (ctx->alloc_len)) {
alloc_len         190 ext/oci8/oci8_lob.c 			if ((*(ctx->lob_len) + lenp) > ctx->alloc_len) {
alloc_len         263 ext/oci8/oci8_lob.c 	ctx.alloc_len = 0;
alloc_len         328 ext/oci8/oci8_lob.c 	ctx.alloc_len = (requested_len + 1) * bytes_per_char;
alloc_len         186 ext/oci8/php_oci8_int.h 	ub4					 alloc_len;
alloc_len        1078 ext/pcre/php_pcre.c 	int				 alloc_len;			/* Actual allocated length */
alloc_len        1148 ext/pcre/php_pcre.c 	alloc_len = 2 * subject_len + 1;
alloc_len        1149 ext/pcre/php_pcre.c 	result = safe_emalloc(alloc_len, sizeof(char), 0);
alloc_len        1213 ext/pcre/php_pcre.c 			if (new_len + 1 > alloc_len) {
alloc_len        1214 ext/pcre/php_pcre.c 				alloc_len = 1 + alloc_len + 2 * new_len;
alloc_len        1215 ext/pcre/php_pcre.c 				new_buf = emalloc(alloc_len);
alloc_len        1277 ext/pcre/php_pcre.c 				if (new_len + 1 > alloc_len) {
alloc_len        1278 ext/pcre/php_pcre.c 					alloc_len = new_len + 1; /* now we know exactly how long it is */
alloc_len        1279 ext/pcre/php_pcre.c 					new_buf = safe_emalloc(alloc_len, sizeof(char), 0);