locale_string     295 ext/pcre/php_pcre.c 		if (pce->locale == BG(locale_string) ||
locale_string     296 ext/pcre/php_pcre.c 		    (pce->locale && BG(locale_string) &&
locale_string     297 ext/pcre/php_pcre.c 		     ZSTR_LEN(pce->locale) == ZSTR_LEN(BG(locale_string)) &&
locale_string     298 ext/pcre/php_pcre.c 		     !memcmp(ZSTR_VAL(pce->locale), ZSTR_VAL(BG(locale_string)), ZSTR_LEN(pce->locale))) ||
locale_string     300 ext/pcre/php_pcre.c 		     ZSTR_LEN(BG(locale_string)) == 1 &&
locale_string     301 ext/pcre/php_pcre.c 		     ZSTR_VAL(BG(locale_string))[0] == 'C') ||
locale_string     302 ext/pcre/php_pcre.c 		    (!BG(locale_string) &&
locale_string     426 ext/pcre/php_pcre.c 	if (BG(locale_string) &&
locale_string     427 ext/pcre/php_pcre.c 	    (ZSTR_LEN(BG(locale_string)) != 1 || ZSTR_VAL(BG(locale_string))[0] != 'C')) {
locale_string     490 ext/pcre/php_pcre.c 	new_entry.locale = BG(locale_string) ?
locale_string     491 ext/pcre/php_pcre.c 		((GC_FLAGS(BG(locale_string)) & IS_STR_PERSISTENT) ?
locale_string     492 ext/pcre/php_pcre.c 			zend_string_copy(BG(locale_string)) :
locale_string     493 ext/pcre/php_pcre.c 			zend_string_init(ZSTR_VAL(BG(locale_string)), ZSTR_LEN(BG(locale_string)), 1)) :
locale_string    3738 ext/standard/basic_functions.c 	BG(locale_string) = NULL;
locale_string    3792 ext/standard/basic_functions.c 		if (BG(locale_string)) {
locale_string    3793 ext/standard/basic_functions.c 			zend_string_release(BG(locale_string));
locale_string    3794 ext/standard/basic_functions.c 			BG(locale_string) = NULL;
locale_string     171 ext/standard/basic_functions.h 	zend_string *locale_string; /* current LC_CTYPE locale (or NULL for 'C') */
locale_string    4551 ext/standard/string.c 					if (BG(locale_string)) {
locale_string    4552 ext/standard/string.c 						zend_string_release(BG(locale_string));
locale_string    4555 ext/standard/string.c 						BG(locale_string) = zend_string_copy(loc);
locale_string    4556 ext/standard/string.c 						RETURN_STR(BG(locale_string));
locale_string    4558 ext/standard/string.c 						BG(locale_string) = zend_string_init(retval, len, 0);
locale_string    4560 ext/standard/string.c 						RETURN_STR_COPY(BG(locale_string));