Lines Matching refs:enc

123 static unsigned php_unicode_toupper_raw(unsigned code, const mbfl_encoding *enc)  in php_unicode_toupper_raw()  argument
130 if (UNEXPECTED(enc == &mbfl_encoding_8859_9 && code == 0x69)) { in php_unicode_toupper_raw()
145 static unsigned php_unicode_tolower_raw(unsigned code, const mbfl_encoding *enc) in php_unicode_tolower_raw() argument
152 if (UNEXPECTED(enc == &mbfl_encoding_8859_9 && code == 0x0049L)) { in php_unicode_tolower_raw()
161 if (UNEXPECTED(enc == &mbfl_encoding_8859_9 && code == 0x130)) { in php_unicode_tolower_raw()
170 static unsigned php_unicode_totitle_raw(unsigned code, const mbfl_encoding *enc) in php_unicode_totitle_raw() argument
178 return php_unicode_toupper_raw(code, enc); in php_unicode_totitle_raw()
181 static unsigned php_unicode_tofold_raw(unsigned code, const mbfl_encoding *enc) in php_unicode_tofold_raw() argument
186 if (UNEXPECTED(enc == &mbfl_encoding_8859_9 && code == 0x49)) { in php_unicode_tofold_raw()
195 if (UNEXPECTED(enc == &mbfl_encoding_8859_9 && code == 0x130)) { in php_unicode_tofold_raw()
204 static inline unsigned php_unicode_tolower_simple(unsigned code, const mbfl_encoding *enc) { in php_unicode_tolower_simple() argument
205 code = php_unicode_tolower_raw(code, enc); in php_unicode_tolower_simple()
211 static inline unsigned php_unicode_toupper_simple(unsigned code, const mbfl_encoding *enc) { in php_unicode_toupper_simple() argument
212 code = php_unicode_toupper_raw(code, enc); in php_unicode_toupper_simple()
218 static inline unsigned php_unicode_totitle_simple(unsigned code, const mbfl_encoding *enc) { in php_unicode_totitle_simple() argument
219 code = php_unicode_totitle_raw(code, enc); in php_unicode_totitle_simple()
225 static inline unsigned php_unicode_tofold_simple(unsigned code, const mbfl_encoding *enc) { in php_unicode_tofold_simple() argument
226 code = php_unicode_tofold_raw(code, enc); in php_unicode_tofold_simple()