Lines Matching refs:new_code
160 unsigned new_code = CASE_LOOKUP(code, upper); in php_unicode_toupper_raw() local
161 if (new_code != CODE_NOT_FOUND) { in php_unicode_toupper_raw()
162 return new_code; in php_unicode_toupper_raw()
180 unsigned new_code = CASE_LOOKUP(code, lower); in php_unicode_tolower_raw() local
181 if (new_code != CODE_NOT_FOUND) { in php_unicode_tolower_raw()
185 return new_code; in php_unicode_tolower_raw()
193 unsigned new_code = CASE_LOOKUP(code, title); in php_unicode_totitle_raw() local
194 if (new_code != CODE_NOT_FOUND) { in php_unicode_totitle_raw()
195 return new_code; in php_unicode_totitle_raw()
214 unsigned new_code = CASE_LOOKUP(code, fold); in php_unicode_tofold_raw() local
215 if (new_code != CODE_NOT_FOUND) { in php_unicode_tofold_raw()
219 return new_code; in php_unicode_tofold_raw()