alloced           123 ext/reflection/php_reflection.c 	size_t alloced;
alloced           129 ext/reflection/php_reflection.c 	str->alloced = 1024;
alloced           144 ext/reflection/php_reflection.c 		if (str->alloced < nlen) {
alloced           146 ext/reflection/php_reflection.c 			str->alloced = nlen;
alloced           147 ext/reflection/php_reflection.c 			str->buf = zend_string_extend(str->buf, str->alloced, 0);
alloced           161 ext/reflection/php_reflection.c 	if (str->alloced < nlen) {
alloced           163 ext/reflection/php_reflection.c 		str->alloced = nlen;
alloced           164 ext/reflection/php_reflection.c 		str->buf = zend_string_extend(str->buf, str->alloced, 0);
alloced           184 ext/reflection/php_reflection.c 	str->alloced = 0;
alloced           951 ext/standard/string.c 	size_t alloced;
alloced          1002 ext/standard/string.c 			alloced = ZSTR_LEN(text) + chk * breakchar_len + 1;
alloced          1005 ext/standard/string.c 			alloced = ZSTR_LEN(text) * (breakchar_len + 1) + 1;
alloced          1015 ext/standard/string.c 				alloced += (size_t) (((ZSTR_LEN(text) - current + 1)/linelength + 1) * breakchar_len) + 1;
alloced          1016 ext/standard/string.c 				newtext = zend_string_extend(newtext, alloced, 0);