alloced           118 ext/reflection/php_reflection.c 	int alloced;
alloced           125 ext/reflection/php_reflection.c 	str->alloced = 1024;
alloced           139 ext/reflection/php_reflection.c 		if (str->alloced < nlen) {
alloced           140 ext/reflection/php_reflection.c 			str->alloced = nlen;
alloced           141 ext/reflection/php_reflection.c 			str->string = erealloc(str->string, str->alloced);
alloced           154 ext/reflection/php_reflection.c 	if (str->alloced < nlen) {
alloced           155 ext/reflection/php_reflection.c 		str->alloced = nlen;
alloced           156 ext/reflection/php_reflection.c 		str->string = erealloc(str->string, str->alloced);
alloced           176 ext/reflection/php_reflection.c 	str->alloced = 0;
alloced           887 ext/standard/string.c 	size_t alloced;
alloced           937 ext/standard/string.c 			alloced = textlen + chk * breakcharlen + 1;
alloced           940 ext/standard/string.c 			alloced = textlen * (breakcharlen + 1) + 1;
alloced           950 ext/standard/string.c 				alloced += (int) (((textlen - current + 1)/linelength + 1) * breakcharlen) + 1;
alloced           951 ext/standard/string.c 				newtext = erealloc(newtext, alloced);