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         262 ext/oci8/oci8_lob.c 	ctx.alloc_len = 0;
alloc_len         327 ext/oci8/oci8_lob.c 	ctx.alloc_len = ((ub4) requested_len + 1) * bytes_per_char;
alloc_len         193 ext/oci8/php_oci8_int.h 	ub4					 alloc_len;
alloc_len        1090 ext/pcre/php_pcre.c 	int				 alloc_len;			/* Actual allocated length */
alloc_len        1150 ext/pcre/php_pcre.c 	alloc_len = 0;
alloc_len        1214 ext/pcre/php_pcre.c 				if (new_len >= alloc_len) {
alloc_len        1215 ext/pcre/php_pcre.c 					alloc_len = alloc_len + 2 * new_len;
alloc_len        1217 ext/pcre/php_pcre.c 						result = zend_string_alloc(alloc_len, 0);
alloc_len        1219 ext/pcre/php_pcre.c 						result = zend_string_extend(result, alloc_len, 0);
alloc_len        1259 ext/pcre/php_pcre.c 				if (new_len >= alloc_len) {
alloc_len        1260 ext/pcre/php_pcre.c 					alloc_len = alloc_len + 2 * new_len;
alloc_len        1262 ext/pcre/php_pcre.c 						result = zend_string_alloc(alloc_len, 0);
alloc_len        1264 ext/pcre/php_pcre.c 						result = zend_string_extend(result, alloc_len, 0);
alloc_len        1301 ext/pcre/php_pcre.c 				if (new_len > alloc_len) {
alloc_len        1302 ext/pcre/php_pcre.c 					alloc_len = new_len; /* now we know exactly how long it is */
alloc_len        1304 ext/pcre/php_pcre.c 						result = zend_string_realloc(result, alloc_len, 0);
alloc_len        1306 ext/pcre/php_pcre.c 						result = zend_string_alloc(alloc_len, 0);