zstr              220 ext/intl/collator/collator_convert.c 	zval* zstr        = NULL;
zstr              234 ext/intl/collator/collator_convert.c 	ALLOC_INIT_ZVAL( zstr );
zstr              235 ext/intl/collator/collator_convert.c 	ZVAL_STRINGL( zstr, (char*)ustr, UBYTES(ustr_len), FALSE );
zstr              237 ext/intl/collator/collator_convert.c 	return zstr;
zstr              246 ext/intl/collator/collator_convert.c 	zval* zstr        = NULL;
zstr              260 ext/intl/collator/collator_convert.c 		zstr = Z_OBJ_HT_P(obj)->get( obj TSRMLS_CC );
zstr              262 ext/intl/collator/collator_convert.c 		switch( Z_TYPE_P( zstr ) )
zstr              267 ext/intl/collator/collator_convert.c 					zval_ptr_dtor( &zstr );
zstr              276 ext/intl/collator/collator_convert.c 					convert_to_string( zstr );
zstr              282 ext/intl/collator/collator_convert.c 		ALLOC_INIT_ZVAL( zstr );
zstr              284 ext/intl/collator/collator_convert.c 		if( Z_OBJ_HT_P(obj)->cast_object( obj, zstr, IS_STRING CAST_OBJECT_SHOULD_FREE TSRMLS_CC ) == FAILURE )
zstr              287 ext/intl/collator/collator_convert.c 			zval_ptr_dtor( &zstr );
zstr              293 ext/intl/collator/collator_convert.c 	if( zstr == NULL )
zstr              301 ext/intl/collator/collator_convert.c 			Z_STRVAL_P( zstr ), Z_STRLEN_P( zstr ),
zstr              307 ext/intl/collator/collator_convert.c 	zval_dtor( zstr );
zstr              310 ext/intl/collator/collator_convert.c 	ZVAL_STRINGL( zstr, (char*)ustr, UBYTES(ustr_len), FALSE );
zstr              316 ext/intl/collator/collator_convert.c 	return zstr;
zstr               39 ext/intl/collator/collator_sort.c 	zval** zstr;     /* pointer to original string(hash-item) */
zstr              491 ext/intl/collator/collator_sort.c 		sortKeyIndxBuf[sortKeyCount].zstr = hashData;
zstr              512 ext/intl/collator/collator_sort.c 		zval_add_ref( sortKeyIndxBuf[j].zstr );
zstr              513 ext/intl/collator/collator_sort.c 		zend_hash_next_index_insert( sortedHash, sortKeyIndxBuf[j].zstr, sizeof(zval **), NULL );
zstr             1670 ext/spl/spl_iterators.c 		if (intern->u.caching.zstr) {
zstr             1671 ext/spl/spl_iterators.c 			zval_ptr_dtor(&intern->u.caching.zstr);
zstr             1672 ext/spl/spl_iterators.c 			intern->u.caching.zstr = NULL;
zstr             2750 ext/spl/spl_iterators.c 			ALLOC_ZVAL(intern->u.caching.zstr);
zstr             2752 ext/spl/spl_iterators.c 				*intern->u.caching.zstr = *intern->inner.zobject;
zstr             2754 ext/spl/spl_iterators.c 				*intern->u.caching.zstr = *intern->current.data;
zstr             2756 ext/spl/spl_iterators.c 			zend_make_printable_zval(intern->u.caching.zstr, &expr_copy, &use_copy);
zstr             2758 ext/spl/spl_iterators.c 				*intern->u.caching.zstr = expr_copy;
zstr             2759 ext/spl/spl_iterators.c 				INIT_PZVAL(intern->u.caching.zstr);
zstr             2760 ext/spl/spl_iterators.c 				zval_copy_ctor(intern->u.caching.zstr);
zstr             2763 ext/spl/spl_iterators.c 				INIT_PZVAL(intern->u.caching.zstr);
zstr             2764 ext/spl/spl_iterators.c 				zval_copy_ctor(intern->u.caching.zstr);
zstr             2868 ext/spl/spl_iterators.c 	if (intern->u.caching.zstr) {
zstr             2869 ext/spl/spl_iterators.c 		RETURN_STRINGL(Z_STRVAL_P(intern->u.caching.zstr), Z_STRLEN_P(intern->u.caching.zstr), 1);
zstr              147 ext/spl/spl_iterators.h 			zval             *zstr;
zstr             1097 ext/standard/string.c 	zval zdelim, zstr;
zstr             1117 ext/standard/string.c 	ZVAL_STRINGL(&zstr, str, str_len, 0);
zstr             1120 ext/standard/string.c 		php_explode(&zdelim, &zstr, return_value, limit);
zstr             1122 ext/standard/string.c 		php_explode_negative_limit(&zdelim, &zstr, return_value, limit);
zstr               48 ext/zip/lib/zip_source_deflate.c     z_stream zstr;
zstr              115 ext/zip/lib/zip_source_deflate.c     ctx->zstr.next_out = (Bytef *)data;
zstr              116 ext/zip/lib/zip_source_deflate.c     ctx->zstr.avail_out = (uInt)len; /* TODO: check for overflow */
zstr              120 ext/zip/lib/zip_source_deflate.c 	ret = deflate(&ctx->zstr, ctx->eof ? Z_FINISH : 0);
zstr              127 ext/zip/lib/zip_source_deflate.c 	    if (ctx->zstr.avail_out == 0
zstr              128 ext/zip/lib/zip_source_deflate.c 		|| (ctx->eof && ctx->zstr.avail_in == 0))
zstr              133 ext/zip/lib/zip_source_deflate.c 	    if (ctx->zstr.avail_in == 0) {
zstr              146 ext/zip/lib/zip_source_deflate.c 		    ctx->size = ctx->zstr.total_in;
zstr              150 ext/zip/lib/zip_source_deflate.c 		    ctx->zstr.next_in = (Bytef *)ctx->buffer;
zstr              151 ext/zip/lib/zip_source_deflate.c 		    ctx->zstr.avail_in = (uInt)n;
zstr              168 ext/zip/lib/zip_source_deflate.c     if (ctx->zstr.avail_out < len)
zstr              169 ext/zip/lib/zip_source_deflate.c 	return (zip_int64_t)(len - ctx->zstr.avail_out);
zstr              189 ext/zip/lib/zip_source_deflate.c     ctx->zstr.next_out = (Bytef *)data;
zstr              190 ext/zip/lib/zip_source_deflate.c     ctx->zstr.avail_out = (uInt)len; /* TODO: check for overflow */
zstr              193 ext/zip/lib/zip_source_deflate.c     while (!end && ctx->zstr.avail_out) {
zstr              194 ext/zip/lib/zip_source_deflate.c 	ret = inflate(&ctx->zstr, Z_SYNC_FLUSH);
zstr              206 ext/zip/lib/zip_source_deflate.c 	    if (ctx->zstr.avail_in == 0) {
zstr              220 ext/zip/lib/zip_source_deflate.c 		    ctx->zstr.next_in = (Bytef *)ctx->buffer;
zstr              221 ext/zip/lib/zip_source_deflate.c 		    ctx->zstr.avail_in = (uInt)n;
zstr              237 ext/zip/lib/zip_source_deflate.c     if (ctx->zstr.avail_out < len)
zstr              238 ext/zip/lib/zip_source_deflate.c 	return (zip_int64_t)(len - ctx->zstr.avail_out);
zstr              256 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.zalloc = Z_NULL;
zstr              257 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.zfree = Z_NULL;
zstr              258 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.opaque = NULL;
zstr              259 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.avail_in = 0;
zstr              260 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.next_in = NULL;
zstr              261 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.avail_out = 0;
zstr              262 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.next_out = NULL;
zstr              265 ext/zip/lib/zip_source_deflate.c 	if ((ret=deflateInit2(&ctx->zstr, Z_BEST_COMPRESSION, Z_DEFLATED,
zstr              279 ext/zip/lib/zip_source_deflate.c 	deflateEnd(&ctx->zstr);
zstr              331 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.zalloc = Z_NULL;
zstr              332 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.zfree = Z_NULL;
zstr              333 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.opaque = NULL;
zstr              334 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.next_in = (Bytef *)ctx->buffer;
zstr              335 ext/zip/lib/zip_source_deflate.c 	ctx->zstr.avail_in = (uInt)n /* TODO: check for overflow */;
zstr              338 ext/zip/lib/zip_source_deflate.c 	if ((ret=inflateInit2(&ctx->zstr, -MAX_WBITS)) != Z_OK) {
zstr              350 ext/zip/lib/zip_source_deflate.c 	inflateEnd(&ctx->zstr);